diff --git a/.gitmodules b/.gitmodules index c0f7ef684b..dff7c12a6d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -8,8 +8,8 @@ branch = ufs_public_release [submodule "FMS"] path = FMS - url = https://github.com/NOAA-EMC/FMS - branch = GFS-FMS + url = https://github.com/NOAA-GFDL/FMS + branch = master [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 diff --git a/CMakeLists.txt b/CMakeLists.txt index a54061e9d0..73dfbcf994 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -125,7 +125,7 @@ add_library( FMS/mosaic/interp.c FMS/mosaic/mosaic_util.c FMS/mosaic/read_mosaic.c - FMS/mpp/affinity.c + FMS/affinity/affinity.c FMS/mpp/nsclock.c FMS/mpp/threadloc.c ) diff --git a/FMS b/FMS index 46014b4f9a..708b8d5e5e 160000 --- a/FMS +++ b/FMS @@ -1 +1 @@ -Subproject commit 46014b4f9a83128488b735d438ed82edd2dedf0c +Subproject commit 708b8d5e5e044860bfc409c22524eb9fb8b25ff3 diff --git a/FV3 b/FV3 index ee9db83132..2bd04f3286 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit ee9db831320bec9583fbb61181c1132214a7bf03 +Subproject commit 2bd04f328626b65fa26339cf4538f05d37c1e1d3 diff --git a/build.sh b/build.sh index 23ce9c67d0..731d12b58b 100755 --- a/build.sh +++ b/build.sh @@ -22,7 +22,7 @@ BUILD_DIR=${MYDIR}/build rm -rf ${BUILD_DIR} mkdir ${BUILD_DIR} -CCPP_SUITES="${CCPP_SUITES:-FV3_GFS_2017_gfdlmp}" +CCPP_SUITES="${CCPP_SUITES:-FV3_GFS_v15p2}" ./FV3/ccpp/framework/scripts/ccpp_prebuild.py \ --config=FV3/ccpp/config/ccpp_prebuild_config.py \ diff --git a/cmake/configure_cheyenne.gnu.cmake b/cmake/configure_cheyenne.gnu.cmake new file mode 100644 index 0000000000..7efcb1633e --- /dev/null +++ b/cmake/configure_cheyenne.gnu.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" OFF) + +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/cmake/configure_cheyenne.intel.cmake b/cmake/configure_cheyenne.intel.cmake new file mode 100644 index 0000000000..534d580aa7 --- /dev/null +++ b/cmake/configure_cheyenne.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 f190c90eac..fa8283194e 100644 --- a/compsets/fv3.input +++ b/compsets/fv3.input @@ -201,6 +201,7 @@ fv3_defaults = { MAKE_NH='.T.' MOUNTAIN='.F.' SATMEDMF='.F.' + ISATMEDMF='0' HYBEDMF='.T.' LHEATSTRG='.F.' LGFDLMPRAD='.F.' diff --git a/conf/configure.fv3.cheyenne.gnu b/conf/configure.fv3.cheyenne.gnu index 873da64846..bc7b9f8cb8 100644 --- a/conf/configure.fv3.cheyenne.gnu +++ b/conf/configure.fv3.cheyenne.gnu @@ -121,7 +121,7 @@ endif FFLAGS_OPT = -O2 -fno-range-check FFLAGS_REPRO = -O2 -g -fbacktrace -fno-range-check -FFLAGS_DEBUG = -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check +FFLAGS_DEBUG = -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -Wall -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check TRANSCENDENTALS := FFLAGS_OPENMP = -fopenmp diff --git a/conf/configure.fv3.linux.gnu b/conf/configure.fv3.linux.gnu index 6683cb5627..e7a46740fb 100644 --- a/conf/configure.fv3.linux.gnu +++ b/conf/configure.fv3.linux.gnu @@ -121,7 +121,7 @@ endif FFLAGS_OPT = -O2 -fno-range-check FFLAGS_REPRO = -O2 -g -fbacktrace -fno-range-check -FFLAGS_DEBUG = -g -O0 -ggdb -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check +FFLAGS_DEBUG = -g -O0 -ggdb -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -Wall -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check TRANSCENDENTALS := FFLAGS_OPENMP = -fopenmp diff --git a/conf/configure.fv3.macosx.gnu b/conf/configure.fv3.macosx.gnu index dd504228f9..8a00796b81 100644 --- a/conf/configure.fv3.macosx.gnu +++ b/conf/configure.fv3.macosx.gnu @@ -122,8 +122,8 @@ CPPDEFS += -DMULTI_GASES endif FFLAGS_OPT = -O2 -g -fno-range-check -FFLAGS_REPRO = -O2 -g -fbacktrace -fno-range-check -FFLAGS_DEBUG = -g -O0 -ggdb -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -Wuninitialized -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check +FFLAGS_REPRO = -O0 -g -fbacktrace -fno-range-check +FFLAGS_DEBUG = -g -O0 -ggdb -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -Wall -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check TRANSCENDENTALS := FFLAGS_OPENMP = -fopenmp diff --git a/modulefiles/cheyenne.gnu/fv3 b/modulefiles/cheyenne.gnu/fv3 index d53d1befab..2bbb20fd1e 100644 --- a/modulefiles/cheyenne.gnu/fv3 +++ b/modulefiles/cheyenne.gnu/fv3 @@ -37,3 +37,11 @@ module load NCEPlibs/9.9.9 ## SIONlib library ## module load SIONlib/1.7.4 + +## +## set cmake compilers +## +setenv CMAKE_C_COMPILER mpicc +setenv CMAKE_CXX_COMPILER mpicxx +setenv CMAKE_Fortran_COMPILER mpif90 +setenv CMAKE_Platform cheyenne.gnu diff --git a/modulefiles/cheyenne.intel/fv3 b/modulefiles/cheyenne.intel/fv3 index 010dede82a..f009c137d1 100644 --- a/modulefiles/cheyenne.intel/fv3 +++ b/modulefiles/cheyenne.intel/fv3 @@ -37,3 +37,11 @@ module load NCEPlibs/9.9.9 ## SIONlib library ## module load SIONlib/1.7.4 + +## +## set cmake compilers +## +setenv CMAKE_C_COMPILER mpicc +setenv CMAKE_CXX_COMPILER mpicxx +setenv CMAKE_Fortran_COMPILER mpif90 +setenv CMAKE_Platform cheyenne.intel diff --git a/modulefiles/gaea.intel/fv3.intel-16.0.3.210 b/modulefiles/gaea.intel/fv3.intel-16.0.3.210 index 67bb46ad0e..0b0bb01591 100644 --- a/modulefiles/gaea.intel/fv3.intel-16.0.3.210 +++ b/modulefiles/gaea.intel/fv3.intel-16.0.3.210 @@ -37,7 +37,7 @@ module load NCEPlibs/9.9.9 ## ## use pre-compiled EMSF library for above compiler / MPI combination ## -module load esmf/8.0.0_bs50 +module load esmf/8.0.0 # Needed at runtime: module load alps diff --git a/parm/ccpp_control.nml.IN b/parm/ccpp_control.nml.IN index 87b887c300..c25b4038db 100644 --- a/parm/ccpp_control.nml.IN +++ b/parm/ccpp_control.nml.IN @@ -159,7 +159,7 @@ cnvcld = .true. imfshalcnv = 2 imfdeepcnv = 2 - isatmedmf = 0 + isatmedmf = @[ISATMEDMF] cdmbgwd = 3.5,0.25 prslrd0 = 0. ivegsrc = 1 diff --git a/parm/ccpp_v15p2_c96.nml.IN b/parm/ccpp_v15p2_c96.nml.IN new file mode 100644 index 0000000000..052c88516f --- /dev/null +++ b/parm/ccpp_v15p2_c96.nml.IN @@ -0,0 +1,305 @@ +&amip_interp_nml + interp_oi_sst = .true. + use_ncep_sst = .true. + use_ncep_ice = .false. + no_anom_sst = .false. + data_set = 'reynolds_oi' + date_out_of_range = 'climo' +/ + +&atmos_model_nml + blocksize = 32 + chksum_debug = .false. + dycore_only = .false. + fdiag = 1 + fhmax = 384 + fhout = 3 + fhmaxhf = 120 + fhouthf = 1 + ccpp_suite = 'FV3_GFS_v15p2' +/ + +&diag_manager_nml + prepend_date = .false. +/ + +&fms_io_nml + checksum_required = .false. + max_files_r = 100 + max_files_w = 100 +/ + +&fms_nml + clock_grain = 'ROUTINE' + domains_stack_size = 3000000 + print_memory_usage = .false. +/ + +&fv_core_nml + layout = 3,8 + io_layout = 1,1 + npx = 97 + npy = 97 + ntiles = 6 + npz = 64 + grid_type = -1 + make_nh = .false. + fv_debug = .false. + range_warn = .false. + reset_eta = .false. + n_sponge = 10 + nudge_qv = .true. + nudge_dz = .false. + tau = 10. + rf_cutoff = 7.5e2 + d2_bg_k1 = 0.15 + d2_bg_k2 = 0.02 + kord_tm = -9 + kord_mt = 9 + kord_wz = 9 + kord_tr = 9 + hydrostatic = .false. + phys_hydrostatic = .false. + use_hydro_pressure = .false. + beta = 0. + a_imp = 1. + p_fac = 0.1 + k_split = 2 + n_split = 6 + nwat = 6 + na_init = 0 + d_ext = 0. + dnats = 1 + fv_sg_adj = 450 + d2_bg = 0. + nord = 2 + dddmp = 0.1 + d4_bg = 0.12 + vtdm4 = 0.02 + delt_max = 0.002 + ke_bg = 0. + do_vort_damp = .true. + external_ic = .true. + external_eta = .true. + gfs_phil = .false. + nggps_ic = .true. + mountain = .false. + ncep_ic = .false. + d_con = 1. + hord_mt = 5 + hord_vt = 5 + hord_tm = 5 + hord_dp = -5 + hord_tr = 8 + adjust_dry_mass = .false. + consv_te = 1. + do_sat_adj = .true. + consv_am = .false. + fill = .true. + dwind_2d = .false. + print_freq = 6 + warm_start = .false. + no_dycore = .false. + z_tracer = .true. + agrid_vel_rst = .true. + read_increment = .false. + res_latlon_dynamics = "" +/ + +&external_ic_nml + filtered_terrain = .true. + levp = 65 + gfs_dwinds = .true. + checker_tr = .false. + nt_checker = 0 +/ + +&gfs_physics_nml + fhzero = 6 + h2o_phys = .true. + ldiag3d = .false. + fhcyc = 24 + use_ufo = .true. + pre_rad = .false. + ncld = 5 + imp_physics = 11 + pdfcld = .false. + fhswr = 3600. + fhlwr = 3600. + ialb = 1 + iems = 1 + iaer = 111 + ico2 = 2 + isubc_sw = 2 + isubc_lw = 2 + isol = 2 + lwhtr = .true. + swhtr = .true. + cnvgwd = .true. + shal_cnv = .true. + cal_pre = .false. + redrag = .true. + dspheat = .true. + hybedmf = .true. + random_clds = .false. + trans_trac = .true. + cnvcld = .true. + imfshalcnv = 2 + imfdeepcnv = 2 + cdmbgwd = 3.5,0.25 + prslrd0 = 0. + ivegsrc = 1 + isot = 1 + debug = .false. + oz_phys = .F. + oz_phys_2015 = .T. + nstf_name = 2,1,0,0,0 + nst_anl = .true. + psautco = 0.0008,0.0005 + prautco = 0.00015,0.00015 + lgfdlmprad = .true. + effr_in = .true. + do_sppt = .T. + do_shum = .T. + do_skeb = .T. + do_sfcperts = .F. +/ + +&gfdl_cloud_microphysics_nml + sedi_transport = .true. + do_sedi_heat = .false. + rad_snow = .true. + rad_graupel = .true. + rad_rain = .true. + const_vi = .F. + const_vs = .F. + const_vg = .F. + const_vr = .F. + vi_max = 1. + vs_max = 2. + vg_max = 12. + vr_max = 12. + qi_lim = 1. + prog_ccn = .false. + do_qa = .true. + fast_sat_adj = .true. + tau_l2v = 225. + tau_v2l = 150. + tau_g2v = 900. + rthresh = 10.e-6 ! This is a key parameter for cloud water + dw_land = 0.16 + dw_ocean = 0.10 + ql_gen = 1.0e-3 + ql_mlt = 1.0e-3 + qi0_crt = 8.0E-5 + qs0_crt = 1.0e-3 + tau_i2s = 1000. + c_psaci = 0.05 + c_pgacs = 0.01 + rh_inc = 0.30 + rh_inr = 0.30 + rh_ins = 0.30 + ccn_l = 300. + ccn_o = 100. + c_paut = 0.5 + c_cracw = 0.8 + use_ppm = .false. + use_ccn = .true. + mono_prof = .true. + z_slope_liq = .true. + z_slope_ice = .true. + de_ice = .false. + fix_negative = .true. + icloud_f = 1 + mp_time = 150. +/ + +&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 + FSNOL = 99999 + FSICL = 99999 + FTSFL = 99999 + FAISL = 99999 + FVETL = 99999 + FSOTL = 99999 + FvmnL = 99999 + FvmxL = 99999 + FSLPL = 99999 + FABSL = 99999 +/ + +&fv_grid_nml + grid_file = 'INPUT/grid_spec.nc' +/ + +&nam_stochy + ntrunc = 766 + lon_s = 1536 + lat_s = 768 + skeb = 0.3 + iseed_skeb = 2019102712451 + iseed_shum = 2019102712452 + iseed_sppt = 2019102712453 + skeb_tau = 21600. + skeb_lscale = 500000. + skebnorm = 0 + skeb_npass = 30 + skeb_vdof = 5 + shum = 0.005 + shum_tau = 21600. + shum_lscale = 500000. + sppt = 0.5 + sppt_tau = 21600. + sppt_lscale = 500000. + sppt_logit = .true. + sppt_sfclimit = .true. + use_zmtnblck = .true. +/ + +&nam_sfcperts +/ + +&cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 1 + knob_ugwp_ndx4lh = 1 + knob_ugwp_version = 0 + launch_level = 25 +/ + diff --git a/parm/ccpp_v16beta_c96.nml.IN b/parm/ccpp_v16beta_c96.nml.IN new file mode 100644 index 0000000000..1e19fcff3d --- /dev/null +++ b/parm/ccpp_v16beta_c96.nml.IN @@ -0,0 +1,338 @@ +&amip_interp_nml + interp_oi_sst = .true. + use_ncep_sst = .true. + use_ncep_ice = .false. + no_anom_sst = .false. + data_set = 'reynolds_oi' + date_out_of_range = 'climo' +/ + +&atmos_model_nml + blocksize = 32 + chksum_debug = .false. + dycore_only = .false. + fdiag = 1 + fhmax = 384 + fhout = 3 + fhmaxhf = 120 + fhouthf = 1 + ccpp_suite = 'FV3_GFS_v16beta' +/ + +&diag_manager_nml + prepend_date = .false. +/ + +&fms_io_nml + checksum_required = .false. + max_files_r = 100 + max_files_w = 100 +/ + +&mpp_io_nml +shuffle=1 +deflate_level=1 +/ + +&fms_nml + clock_grain = 'ROUTINE' + domains_stack_size = 3000000 + print_memory_usage = .false. +/ + +&fv_core_nml + layout = 3,8 + io_layout = 1,1 + npx = 97 + npy = 97 + ntiles = 6 + npz = 64 + grid_type = -1 + make_nh = .false. + fv_debug = .false. + range_warn = .false. + reset_eta = .false. + n_sponge = 10 + nudge_qv = .true. + nudge_dz = .false. + tau = 10. + rf_cutoff = 7.5e2 + d2_bg_k1 = 0.20 + d2_bg_k2 = 0.0 + kord_tm = -9 + kord_mt = 9 + kord_wz = 9 + kord_tr = 9 + hydrostatic = .false. + phys_hydrostatic = .false. + use_hydro_pressure = .false. + beta = 0. + a_imp = 1. + p_fac = 0.1 + k_split = 2 + n_split = 6 + nwat = 6 + na_init = 0 + d_ext = 0. + dnats = 1 + fv_sg_adj = 450 + d2_bg = 0. + nord = 2 + dddmp = 0.1 + d4_bg = 0.12 + vtdm4 = 0.02 + delt_max = 0.002 + ke_bg = 0. + do_vort_damp = .true. + external_ic = .true. + external_eta = .true. + gfs_phil = .false. + nggps_ic = .true. + mountain = .false. + ncep_ic = .false. + d_con = 1. + hord_mt = 5 + hord_vt = 5 + hord_tm = 5 + hord_dp = -5 + hord_tr = 8 + adjust_dry_mass = .false. + consv_te = 1. + do_sat_adj = .true. + consv_am = .false. + fill = .true. + dwind_2d = .false. + print_freq = 6 + warm_start = .false. + no_dycore = .false. + z_tracer = .true. + agrid_vel_rst = .true. + read_increment = .false. + res_latlon_dynamics = "" +/ + +&external_ic_nml + filtered_terrain = .true. + levp = 65 + gfs_dwinds = .true. + checker_tr = .false. + nt_checker = 0 +/ + +&gfs_physics_nml + fhzero = 6 + h2o_phys = .true. + ldiag3d = .false. + fhcyc = 24 + use_ufo = .true. + pre_rad = .false. + ncld = 5 + imp_physics = 11 + pdfcld = .false. + fhswr = 3600. + fhlwr = 3600. + ialb = 1 + iems = 1 + iaer = 5111 + icliq_sw = 2 + iovr_lw = 3 + iovr_sw = 3 + ico2 = 2 + isubc_sw = 2 + isubc_lw = 2 + isol = 2 + lwhtr = .true. + swhtr = .true. + cnvgwd = .true. + shal_cnv = .true. + cal_pre = .false. + redrag = .true. + dspheat = .true. + hybedmf = .false. + satmedmf = .true. + isatmedmf = 1 + lheatstrg = .true. + random_clds = .false. + trans_trac = .true. + cnvcld = .true. + imfshalcnv = 2 + imfdeepcnv = 2 + cdmbgwd = 4.0,0.15,1.0,1.0 + prslrd0 = 0. + ivegsrc = 1 + isot = 1 + lsoil = 4 + lsm = 1 + iopt_dveg = 1 + iopt_crs = 1 + iopt_btr = 1 + iopt_run = 1 + iopt_sfc = 1 + iopt_frz = 1 + iopt_inf = 1 + iopt_rad = 1 + iopt_alb = 2 + iopt_snf = 4 + iopt_tbot = 2 + iopt_stc = 1 + debug = .false. + oz_phys = .F. + oz_phys_2015 = .T. + nstf_name = 2,1,0,0,0 + nst_anl = .true. + psautco = 0.0008,0.0005 + prautco = 0.00015,0.00015 + lgfdlmprad = .true. + effr_in = .true. + ldiag_ugwp = .false. + do_ugwp = .false. + do_tofd = .true. + do_sppt = .true. + do_shum = .true. + do_skeb = .true. + do_sfcperts = .false. +/ + +&gfdl_cloud_microphysics_nml + sedi_transport = .true. + do_sedi_heat = .false. + rad_snow = .true. + rad_graupel = .true. + rad_rain = .true. + const_vi = .F. + const_vs = .F. + const_vg = .F. + const_vr = .F. + vi_max = 1. + vs_max = 2. + vg_max = 12. + vr_max = 12. + qi_lim = 1. + prog_ccn = .false. + do_qa = .true. + fast_sat_adj = .true. + tau_l2v = 225. + tau_v2l = 150. + tau_g2v = 900. + rthresh = 10.e-6 ! This is a key parameter for cloud water + dw_land = 0.16 + dw_ocean = 0.10 + ql_gen = 1.0e-3 + ql_mlt = 1.0e-3 + qi0_crt = 8.0E-5 + qs0_crt = 1.0e-3 + tau_i2s = 1000. + c_psaci = 0.05 + c_pgacs = 0.01 + rh_inc = 0.30 + rh_inr = 0.30 + rh_ins = 0.30 + ccn_l = 300. + ccn_o = 100. + c_paut = 0.5 + c_cracw = 0.8 + use_ppm = .false. + use_ccn = .true. + mono_prof = .true. + z_slope_liq = .true. + z_slope_ice = .true. + de_ice = .false. + fix_negative = .true. + icloud_f = 1 + mp_time = 150. + reiflag = 2 +/ + +&interpolator_nml + interp_method = 'conserve_great_circle' +/ + +&namsfc + FNGLAC = 'global_glacier.2x2.grb' + FNMXIC = 'global_maxice.2x2.grb' + FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' + FNSNOC = 'global_snoclim.1.875.grb' + FNZORC = 'igbp' + FNALBC = 'global_snowfree_albedo.bosu.t126.384.190.rg.grb' + FNALBC2 = 'global_albedo4.1x1.grb' + FNAISC = 'CFSR.SEAICE.1982.2012.monthly.clim.grb' + FNTG3C = 'global_tg3clim.2.6x1.5.grb' + FNVEGC = 'global_vegfrac.0.144.decpercent.grb' + FNVETC = 'global_vegtype.igbp.t126.384.190.rg.grb' + FNSOTC = 'global_soiltype.statsgo.t126.384.190.rg.grb' + FNSMCC = 'global_soilmgldas.t126.384.190.grb' + FNMSKH = 'seaice_newland.grb' + FNTSFA = '' + FNACNA = '' + FNSNOA = '' + FNVMNC = 'global_shdmin.0.144x0.144.grb' + FNVMXC = 'global_shdmax.0.144x0.144.grb' + FNSLPC = 'global_slope.1x1.grb' + FNABSC = 'global_mxsnoalb.uariz.t126.384.190.rg.grb' + LDEBUG = .false. + FSMCL(2) = 99999 + FSMCL(3) = 99999 + FSMCL(4) = 99999 + LANDICE = .true. + FTSFS = 90 + FAISL = 99999 + FAISS = 99999 + FSNOL = 99999 + FSNOS = 99999 + FSICL = 99999 + FSICS = 99999 + FTSFL = 99999 + FVETL = 99999 + FSOTL = 99999 + FvmnL = 99999 + FvmxL = 99999 + FSLPL = 99999 + FABSL = 99999 +/ + +&fv_grid_nml + grid_file = 'INPUT/grid_spec.nc' +/ + +&nam_stochy + ntrunc = 766 + lon_s = 1536 + lat_s = 768 + skeb = 0.3 + iseed_skeb = 2019102712451 + iseed_shum = 2019102712452 + iseed_sppt = 2019102712453 + skeb_tau = 21600. + skeb_lscale = 500000. + skebnorm = 0 + skeb_npass = 30 + skeb_vdof = 5 + shum = 0.005 + shum_tau = 21600. + shum_lscale = 500000. + sppt = 0.5 + sppt_tau = 21600. + sppt_lscale = 500000. + sppt_logit = .true. + sppt_sfclimit = .true. + use_zmtnblck = .true. +/ + +&nam_sfcperts +/ + +&cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 1 + knob_ugwp_ndx4lh = 1 + knob_ugwp_version = 0 + launch_level = 27 +/ + diff --git a/parm/input.nml.IN b/parm/input.nml.IN index c4d53f76ca..e3a4fd75ab 100644 --- a/parm/input.nml.IN +++ b/parm/input.nml.IN @@ -158,7 +158,7 @@ cnvcld = .true. imfshalcnv = 2 imfdeepcnv = 2 - isatmedmf = 0 + isatmedmf = @[ISATMEDMF] cdmbgwd = 3.5,0.25 prslrd0 = 0. ivegsrc = 1 diff --git a/stochastic_physics b/stochastic_physics index 25c3321ec7..01739da377 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit 25c3321ec77fe0de50b60399a4eff71363fabd90 +Subproject commit 01739da377d603c9c8d6d666afe2442260fd79d1 diff --git a/tests/Compile_cheyenne.gnu.log b/tests/Compile_cheyenne.gnu.log index 3ae91aff6d..9e8b991b96 100644 --- a/tests/Compile_cheyenne.gnu.log +++ b/tests/Compile_cheyenne.gnu.log @@ -1,560 +1,59 @@ + SECONDS=0 ++++ readlink -f ./compile_cmake.sh +++ dirname /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/compile_cmake.sh ++ readonly MYDIR=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests ++ MYDIR=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests ++ readonly ARGC=4 ++ ARGC=4 ++ cd /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests ++ [[ 4 -eq 0 ]] + [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.gnu -+ BUILD_TARGET=cheyenne.gnu -+ readonly 'MAKE_OPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y' -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y' -+ readonly BUILD_NAME=fv3_10 -+ BUILD_NAME=fv3_10 -+ readonly clean_before=YES ++ PATHTR=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu ++ MACHINE_ID=cheyenne.gnu ++ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta' ++ BUILD_NAME=fv3_1 + clean_before=YES -+ readonly clean_after=YES + clean_after=YES -+ hostname -cheyenne1 -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y into fv3_10.exe on cheyenne.gnu' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y into fv3_10.exe on cheyenne.gnu -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake ++ BUILD_DIR=build_fv3_1 + [[ cheyenne.gnu == cheyenne.* ]] + MAKE_THREADS=3 + MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y == *\W\W\3\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ NEMS_BUILDOPT= ++ hostname +cheyenne6 ++ cd /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests ++ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta into fv3_1.exe on cheyenne.gnu' +Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta into fv3_1.exe on cheyenne.gnu + '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_10 BUILD_ENV=cheyenne.gnu 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y' NEMS_BUILDOPT= distclean -Will copy modules.nems and NEMS.x as fv3_10 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 --static --suites=FV3_GFS_v15plus --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include" ; \ -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 --static --suites=FV3_GFS_v15plus --clean -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: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_10 BUILD_ENV=cheyenne.gnu 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y' NEMS_BUILDOPT= build -Will copy modules.nems and NEMS.x as fv3_10 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/modulefiles/cheyenne.gnu/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/modules.fv3_10" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/modules.fv3_10 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/conf/configure.fv3.cheyenne.gnu /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ -exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mpp/threadloc.c -o ../mpp/threadloc.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_domains.F90 -o ../mpp/mpp_domains.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_grid.F90 -o ../diag_manager/diag_grid.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_axis.F90 -o ../diag_manager/diag_axis.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_output.F90 -o ../diag_manager/diag_output.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp_external.F90 -o ../time_interp/time_interp_external.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_util.F90 -o ../diag_manager/diag_util.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manager.F90 -o ../diag_manager/diag_manager.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 --static --suites=FV3_GFS_v15plus ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh cheyenne.gnu "$PATH_CCPP" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk \ - "CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp"" NO NO ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp"/include ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 --static --suites=FV3_GFS_v15plus ++ rm -rf build_fv3_1 ++ mkdir -p build_fv3_1 ++ 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' ++ [[ cheyenne.gnu == \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 /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu ++ ./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_1/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_v15plus.xml ... +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 @@ -583,7 +82,7 @@ INFO: Converting local name evap_land of variable kinematic_surface_upward_laten 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 @@ -897,6 +396,7 @@ INFO: Converting local name zorlo of variable surface_roughness_length_over_ocea 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 @@ -1126,7 +626,6 @@ INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_mom 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 lgocart of variable flag_gocart 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 @@ -1288,7 +787,7 @@ INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux 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 save_q of variable tracer_concentration_save 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 runoff of variable total_runoff 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 @@ -1459,7 +958,7 @@ INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from 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 islmsk_cice of variable sea_land_ice_mask_cice 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 @@ -1598,7 +1097,7 @@ INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of var 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 runoff of variable total_runoff 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 @@ -1710,6 +1209,7 @@ INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_ 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 @@ -1757,6 +1257,7 @@ INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ 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 qgrs of variable tracer_concentration 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 con_t0c of variable temperature_at_zero_celsius from new to old metadata @@ -1869,7 +1370,7 @@ INFO: Converting local name restart of variable flag_for_restart from new to old 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html +INFO: Metadata table for model FV3 written to tests/build_fv3_1/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 @@ -1907,8 +1408,7 @@ 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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post +INFO: Parsed tables in scheme zhaocarr_precpd INFO: Parsed tables in scheme noahmpdrv INFO: Parsed tables in scheme myjpbl_wrapper INFO: Parsed tables in scheme GFS_surface_generic_pre @@ -1921,7 +1421,7 @@ 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 zhaocarr_precpd +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 @@ -1937,7 +1437,7 @@ 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_noahmp_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 @@ -1947,6 +1447,7 @@ 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 @@ -1957,7 +1458,6 @@ INFO: Parsed tables in scheme mp_thompson_post 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 gwdps_post INFO: Parsed tables in scheme cires_ugwp INFO: Parsed tables in scheme get_prs_fv3 INFO: Parsed tables in scheme get_phi_fv3 @@ -1967,9 +1467,7 @@ 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 GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post INFO: Parsed tables in scheme sfc_cice INFO: Parsed tables in scheme mynnrad_post INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre @@ -1989,8 +1487,6 @@ INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_cl 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_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 @@ -2003,6 +1499,7 @@ 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 @@ -2019,11 +1516,8 @@ 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_water_to_rain INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep INFO: filtering out variable convective_updraft_area_fraction INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -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 @@ -2045,7 +1539,6 @@ 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 explicit_rainfall_rate_from_previous_timestep 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 @@ -2060,6 +1553,7 @@ 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_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 @@ -2076,7 +1570,6 @@ 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 graupel_precipitation_rate_from_previous_timestep INFO: filtering out variable grav_settling INFO: filtering out variable ground_temperature_for_noahmp INFO: filtering out variable gwd_opt @@ -2085,7 +1578,6 @@ 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_precipitation_rate_from_previous_timestep INFO: filtering out variable ice_supersaturation_threshold INFO: filtering out variable ice_water_mixing_ratio INFO: filtering out variable in_number_concentration @@ -2175,7 +1667,6 @@ 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_precipitation_rate_from_previous_timestep 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 @@ -2257,23 +1748,315 @@ 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex +INFO: Metadata table for model FV3 written to tests/build_fv3_1/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 before entering 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 before entering 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 before entering MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 162 schemes to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_SCHEMES.mk, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_SCHEMES.sh +INFO: Added 164 schemes to tests/build_fv3_1/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_1/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_1/FV3/ccpp/physics/CCPP_SCHEMES.sh INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics ... +INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_1/FV3/ccpp/physics ... INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 6 auto-generated caps to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_CAPS.mk and /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_CAPS.cmake +INFO: Added 12 auto-generated caps to tests/build_fv3_1/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_1/FV3/ccpp/physics/CCPP_CAPS.cmake INFO: CCPP prebuild step completed successfully. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ ./build_ccpp.sh cheyenne.gnu /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk 'CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp' NO NO -MACHINE_ID=cheyenne.gnu is valid. -Compilers set for cheyenne.gnu. -Obtained ESMF_LIB=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib from /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -DNETCDF_DIR=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/ -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DOPENMP=ON -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... ++ source build_fv3_1/FV3/ccpp/physics/CCPP_SCHEMES.sh +++ export 'CCPP_SCHEMES=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfpbltq.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfscuq.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/satmedmfvdifq.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninshoc.f' +++ CCPP_SCHEMES='/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfpbltq.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfscuq.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/satmedmfvdifq.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninshoc.f' ++ source build_fv3_1/FV3/ccpp/physics/CCPP_CAPS.sh +++ export 'CCPP_CAPS=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_stochastics_cap.F90' +++ CCPP_CAPS='/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_stochastics_cap.F90' ++ source build_fv3_1/FV3/ccpp/physics/CCPP_STATIC_API.sh +++ export CCPP_STATIC_API=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_static_api.F90 +++ CCPP_STATIC_API=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/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* ]] +++ 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 /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/conf/module-setup.sh.inc +++ __ms_function_name=setup__test_function__28399 +++ eval 'setup__test_function__28399() { /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__28399 | 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 ]] +++ [[ -d /dcom ]] +++ [[ -L /usrx ]] +++ [[ -d /glade ]] +++ eval module help +++ module purge ++++ /glade/u/apps/ch/opt/lmod/8.1.7/lmod/lmod/libexec/lmod bash purge +++ eval 'MODULEPATH=/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep;' export 'MODULEPATH;' '_ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvY29tcGlsZXJzOi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pZGVwIix9;' export '_ModuleTable001_;' '_ModuleTable_Sz_=1;' export '_ModuleTable_Sz_;' ++++ MODULEPATH=/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep ++++ export MODULEPATH ++++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvY29tcGlsZXJzOi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pZGVwIix9 ++++ export _ModuleTable001_ ++++ _ModuleTable_Sz_=1 ++++ export _ModuleTable_Sz_ ++++ : -s sh +++ eval +++ unset __ms_shell +++ unset __ms_ksh_test +++ unset __ms_bash_test +++ unset setup__test_function__28399 +++ unset __ms_function_name ++ [[ cheyenne.gnu == macosx.* ]] ++ [[ cheyenne.gnu == linux.* ]] ++ module use /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu +++ /glade/u/apps/ch/opt/lmod/8.1.7/lmod/lmod/libexec/lmod bash use /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu ++ eval '__LMOD_REF_COUNT_MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu:1\;/glade/u/apps/ch/modulefiles/default/compilers:1\;/glade/u/apps/ch/modulefiles/default/idep:1;' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu:/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep;' export 'MODULEPATH;' '_ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9nbGFkZS93b3JrL2hlaW56ZWxsL2Z2My91ZnMtd2VhdGhlci1tb2RlbC91ZnMtd2VhdGhlci1tb2RlbF9wdWJsaWMtcmVsZWFzZV91cGRhdGUtZnJvbS1kdGMtZGV2ZWxvcC0yMDE5MTIwOS9nbnUvbW9kdWxlZmlsZXMvY2hleWVubmUuZ251IiwiL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVycyIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pZGVwIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9nbGFkZS91L2FwcHMvY2gv;' export '_ModuleTable001_;' '_ModuleTable002_=bW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnM6L2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2lkZXAiLH0=;' export '_ModuleTable002_;' '_ModuleTable_Sz_=2;' export '_ModuleTable_Sz_;' +++ __LMOD_REF_COUNT_MODULEPATH='/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu:1;/glade/u/apps/ch/modulefiles/default/compilers:1;/glade/u/apps/ch/modulefiles/default/idep:1' +++ export __LMOD_REF_COUNT_MODULEPATH +++ MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu:/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep +++ export MODULEPATH +++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9nbGFkZS93b3JrL2hlaW56ZWxsL2Z2My91ZnMtd2VhdGhlci1tb2RlbC91ZnMtd2VhdGhlci1tb2RlbF9wdWJsaWMtcmVsZWFzZV91cGRhdGUtZnJvbS1kdGMtZGV2ZWxvcC0yMDE5MTIwOS9nbnUvbW9kdWxlZmlsZXMvY2hleWVubmUuZ251IiwiL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVycyIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pZGVwIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9nbGFkZS91L2FwcHMvY2gv +++ export _ModuleTable001_ +++ _ModuleTable002_=bW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnM6L2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2lkZXAiLH0= +++ export _ModuleTable002_ +++ _ModuleTable_Sz_=2 +++ export _ModuleTable_Sz_ +++ : -s sh ++ eval ++ module load fv3 +++ /glade/u/apps/ch/opt/lmod/8.1.7/lmod/lmod/libexec/lmod bash load fv3 ++ eval 'BACIO_LIB4=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a;' export 'BACIO_LIB4;' 'CC=gcc;' export 'CC;' 'CESMDATAROOT=/glade/p/cesmdata/cseg;' export 'CESMDATAROOT;' 'CESMROOT=/glade/p/cesm;' export 'CESMROOT;' 'CMAKE_CXX_COMPILER=mpicxx;' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER=mpicc;' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER=mpif90;' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform=cheyenne.gnu;' export 'CMAKE_Platform;' 'COMPILER=gnu;' export 'COMPILER;' '__LMOD_REF_COUNT_CPATH=/glade/u/apps/ch/opt/mpt_fmods/2.19/gnu/8.3.0:1\;/glade/u/apps/ch/opt/mpt/2.19/include:1;' export '__LMOD_REF_COUNT_CPATH;' 'CPATH=/glade/u/apps/ch/opt/mpt_fmods/2.19/gnu/8.3.0:/glade/u/apps/ch/opt/mpt/2.19/include;' export 'CPATH;' 'CXX=g++;' export 'CXX;' 'DASK_ROOT_CONFIG=/glade/u/apps/config/dask;' export 'DASK_ROOT_CONFIG;' 'ENV=/etc/profile.d/modules.sh;' export 'ENV;' 'ESMFMKFILE=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib/esmf.mk;' export 'ESMFMKFILE;' 'F77=gfortran;' export 'F77;' 'F90=gfortran;' export 'F90;' 'FC=gfortran;' export 'FC;' '__LMOD_REF_COUNT_FPATH=/glade/u/apps/ch/opt/mpt/2.19/include:1;' export '__LMOD_REF_COUNT_FPATH;' 'FPATH=/glade/u/apps/ch/opt/mpt/2.19/include;' export 'FPATH;' 'GNU_MAJOR_VERSION=8.3;' export 'GNU_MAJOR_VERSION;' 'GNU_MINOR_VERSION=0;' export 'GNU_MINOR_VERSION;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH=/glade/u/apps/ch/opt/mpt_fmods/2.19/gnu/8.3.0:1\;/glade/u/apps/ch/opt/mpt/2.19/lib:1\;/glade/u/apps/ch/opt/gnu/8.3.0/lib64:1\;/glade/u/apps/ch/opt/gnu/8.3.0/lib64/gcc/x86_64-pc-linux-gnu/8.3.0:1\;/ncar/opt/slurm/latest/lib:1\;/glade/u/apps/ch/os/usr/lib64:1\;/glade/u/apps/ch/os/usr/lib:1\;/glade/u/apps/ch/os/lib64:1\;/glade/u/apps/ch/os/lib:1;' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=/glade/u/apps/ch/opt/mpt_fmods/2.19/gnu/8.3.0:/glade/u/apps/ch/opt/mpt/2.19/lib:/glade/u/apps/ch/opt/gnu/8.3.0/lib64:/glade/u/apps/ch/opt/gnu/8.3.0/lib64/gcc/x86_64-pc-linux-gnu/8.3.0:/ncar/opt/slurm/latest/lib:/glade/u/apps/ch/os/usr/lib64:/glade/u/apps/ch/os/usr/lib:/glade/u/apps/ch/os/lib64:/glade/u/apps/ch/os/lib;' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH=/glade/u/apps/ch/opt/mpt/2.19/lib:1;' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH=/glade/u/apps/ch/opt/mpt/2.19/lib;' export 'LIBRARY_PATH;' 'LMOD_COMPILER=gnu;' export 'LMOD_COMPILER;' 'LMOD_COMPILER_VERSION=8.3.0;' export 'LMOD_COMPILER_VERSION;' 'LMOD_FAMILY_COMPILER=gnu;' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION=8.3.0;' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI=mpt;' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION=2.19;' export 'LMOD_FAMILY_MPI_VERSION;' 'LMOD_MPI=mpt_fmods;' export 'LMOD_MPI;' 'LMOD_MPI_VERSION=2.19;' export 'LMOD_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES=ncarenv/1.3:1\;gnu/8.3.0:1\;mpt/2.19:1\;ncarcompilers/0.5.0:1\;netcdf/4.6.3:1\;esmf/8.0.0:1\;NCEPlibs/9.9.9:1\;SIONlib/1.7.4:1\;fv3:1;' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES=ncarenv/1.3:gnu/8.3.0:mpt/2.19:ncarcompilers/0.5.0:netcdf/4.6.3:esmf/8.0.0:NCEPlibs/9.9.9:SIONlib/1.7.4:fv3;' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/share/man:1\;/glade/u/apps/ch/opt/mpt/2.19/man:1\;/glade/u/apps/ch/opt/gnu/8.3.0/share/man:1\;/ncar/opt/slurm/latest/share/man:1\;/usr/local/man:1\;/usr/share/man:1\;/opt/pbs/share/man:1\;/opt/clmgr/man:1\;/opt/sgi/share/man:1;' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/share/man:/glade/u/apps/ch/opt/mpt/2.19/man:/glade/u/apps/ch/opt/gnu/8.3.0/share/man:/ncar/opt/slurm/latest/share/man:/usr/local/man:/usr/share/man:/opt/pbs/share/man:/opt/clmgr/man:/opt/sgi/share/man;' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu:1\;/glade/u/apps/ch/modulefiles/default/compilers:1\;/glade/u/apps/ch/modulefiles/default/idep:1\;/glade/u/apps/ch/modulefiles/default/gnu/8.3.0:1\;/glade/u/apps/ch/modulefiles/default/mpt/2.19/gnu/8.3.0:1\;/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19:1;' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu:/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep:/glade/u/apps/ch/modulefiles/default/gnu/8.3.0:/glade/u/apps/ch/modulefiles/default/mpt/2.19/gnu/8.3.0:/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19;' export 'MODULEPATH;' 'MPICC_CC=gcc;' export 'MPICC_CC;' 'MPICXX_CXX=g++;' export 'MPICXX_CXX;' 'MPIF08_F08=gfortran;' export 'MPIF08_F08;' 'MPIF90_F90=gfortran;' export 'MPIF90_F90;' 'MPI_IB_CONGESTED=1;' export 'MPI_IB_CONGESTED;' 'MPI_ROOT=/glade/u/apps/ch/opt/mpt/2.19;' export 'MPI_ROOT;' 'MPI_SYSLOG_COPY=2;' export 'MPI_SYSLOG_COPY;' 'MPT_VERSION=2.19;' export 'MPT_VERSION;' 'MP_COMPILER=gnu;' export 'MP_COMPILER;' 'NCAR_EXCLUDE_ASNEEDED=1;' export 'NCAR_EXCLUDE_ASNEEDED;' 'NCAR_HOST=cheyenne;' export 'NCAR_HOST;' 'NCAR_INC_GNU=/glade/u/apps/ch/opt/gnu/8.3.0/include;' export 'NCAR_INC_GNU;' 'NCAR_INC_NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include;' export 'NCAR_INC_NETCDF;' 'NCAR_LDFLAGS_GNU=/glade/u/apps/ch/opt/gnu/8.3.0/lib64;' export 'NCAR_LDFLAGS_GNU;' 'NCAR_LDFLAGS_GNU32=/glade/u/apps/ch/opt/gnu/8.3.0/lib64/gcc/x86_64-pc-linux-gnu/8.3.0;' export 'NCAR_LDFLAGS_GNU32;' 'NCAR_LDFLAGS_NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/lib;' export 'NCAR_LDFLAGS_NETCDF;' 'NCAR_LIBS_MPT=-lrt\' '-ldl;' export 'NCAR_LIBS_MPT;' 'NCAR_LIBS_NETCDF=-Wl,-Bstatic\' '-lnetcdff\' '-lnetcdf\' '-lhdf5hl_fortran\' '-lhdf5_hl\' '-lhdf5_fortran\' '-lhdf5\' '-lsz\' '-lz\' '-Wl,-Bdynamic\' '-lm\' '-ldl;' export 'NCAR_LIBS_NETCDF;' 'NCAR_RANK_MPT=1000;' export 'NCAR_RANK_MPT;' 'NCAR_ROOT_GNU=/glade/u/apps/ch/opt/gnu/8.3.0/;' export 'NCAR_ROOT_GNU;' 'NCAR_ROOT_MPT=/glade/u/apps/ch/opt/mpt/2.19;' export 'NCAR_ROOT_MPT;' 'NCAR_ROOT_NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/;' export 'NCAR_ROOT_NETCDF;' 'NCAR_WRAPPER_MPI=/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi;' export 'NCAR_WRAPPER_MPI;' 'NCEPLIBS_DIR=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19;' export 'NCEPLIBS_DIR;' 'NEMSIO_INC=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/include;' export 'NEMSIO_INC;' 'NEMSIO_LIB=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a;' export 'NEMSIO_LIB;' 'NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/;' export 'NETCDF;' 'OMP_NUM_THREADS=1;' export 'OMP_NUM_THREADS;' 'OMP_STACKSIZE=64000K;' export 'OMP_STACKSIZE;' 'OSHCC_CC=gcc;' export 'OSHCC_CC;' 'OSHCXX_CXX=g++;' export 'OSHCXX_CXX;' 'OSHF90_F90=gfortran;' export 'OSHF90_F90;' '__LMOD_REF_COUNT_PATH=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/bin:1\;/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/bin:1\;/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0:1\;/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi:1\;/glade/u/apps/ch/opt/mpt/2.19/bin:1\;/glade/u/apps/ch/opt/gnu/8.3.0/bin:1\;/glade/u/apps/opt/globus-utils:1\;/glade/u/apps/ch/opt/usr/bin:1\;/ncar/opt/slurm/latest/bin:1\;/opt/clmgr/sbin:1\;/opt/clmgr/bin:1\;/opt/sgi/sbin:1\;/opt/sgi/bin:1\;/glade/u/apps/ch/opt/lmod/8.1.7/bin:1\;/glade/u/home/heinzell/bin:1\;/usr/local/bin:1\;/usr/bin:1\;/bin:2\;/usr/bin/X11:1\;/usr/games:1\;/opt/ibutils/bin:1\;/usr/lib/mit/bin:1\;/opt/pbs/bin:1\;/sbin:1\;/glade/u/apps/opt/hpss/hpss-client.5.0.2.p5/bin:1\;/glade/u/apps/ch/os/usr/bin:1;' export '__LMOD_REF_COUNT_PATH;' 'PATH=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/bin:/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/bin:/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0:/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi:/glade/u/apps/ch/opt/mpt/2.19/bin:/glade/u/apps/ch/opt/gnu/8.3.0/bin:/glade/u/apps/opt/globus-utils:/glade/u/apps/ch/opt/usr/bin:/ncar/opt/slurm/latest/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/glade/u/apps/ch/opt/lmod/8.1.7/bin:/glade/u/home/heinzell/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games:/opt/ibutils/bin:/usr/lib/mit/bin:/opt/pbs/bin:/sbin:/glade/u/apps/opt/hpss/hpss-client.5.0.2.p5/bin:/glade/u/apps/ch/os/usr/bin;' export 'PATH;' 'PERL5LIB=/glade/u/apps/ch/os/usr/lib/perl5/5.18.2/;' export 'PERL5LIB;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/lib/pkgconfig:1;' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/lib/pkgconfig;' export 'PKG_CONFIG_PATH;' 'SIONLIB=/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19;' export 'SIONLIB;' 'SIONLIB_INC=-I/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/include\' '-I/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/include/mod_64;' export 'SIONLIB_INC;' 'SIONLIB_LIB=-L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib\' '-lsionmpi_f90_64\' '-lsionser_f90_64\' '-lsionmpi_64\' '-lsiongen_64\' '-lsionser_64\' '-lsioncom_64\' '-lsioncom_64_lock_none;' export 'SIONLIB_LIB;' 'SP_LIBd=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a;' export 'SP_LIBd;' 'W3EMC_LIBd=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a;' export 'W3EMC_LIBd;' 'W3NCO_LIBd=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a;' export 'W3NCO_LIBd;' 'WRFIO_NCD_LARGE_FILE_SUPPORT=1;' export 'WRFIO_NCD_LARGE_FILE_SUPPORT;' '__LMOD_REF_COUNT__LMFILES_=/glade/u/apps/ch/modulefiles/default/idep/ncarenv/1.3.lua:1\;/glade/u/apps/ch/modulefiles/default/compilers/gnu/8.3.0.lua:1\;/glade/u/apps/ch/modulefiles/default/gnu/8.3.0/mpt/2.19.lua:1\;/glade/u/apps/ch/modulefiles/default/gnu/8.3.0/ncarcompilers/0.5.0.lua:1\;/glade/u/apps/ch/modulefiles/default/gnu/8.3.0/netcdf/4.6.3.lua:1\;/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19/esmf/8.0.0:1\;/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19/NCEPlibs/9.9.9:1\;/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19/SIONlib/1.7.4:1\;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu/fv3:1;' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_=/glade/u/apps/ch/modulefiles/default/idep/ncarenv/1.3.lua:/glade/u/apps/ch/modulefiles/default/compilers/gnu/8.3.0.lua:/glade/u/apps/ch/modulefiles/default/gnu/8.3.0/mpt/2.19.lua:/glade/u/apps/ch/modulefiles/default/gnu/8.3.0/ncarcompilers/0.5.0.lua:/glade/u/apps/ch/modulefiles/default/gnu/8.3.0/netcdf/4.6.3.lua:/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19/esmf/8.0.0:/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19/NCEPlibs/9.9.9:/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19/SIONlib/1.7.4:/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu/fv3;' export '_LMFILES_;' '_ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImdudSIsWyJtcGkiXT0ibXB0Iix9LG1UPXtOQ0VQbGlicz17WyJmbiJdPSIvZ2xhZGUvcC9yYWwvam50cC9HTVRCL3Rvb2xzL21vZHVsZWZpbGVzL2dudS04LjMuMC9tcHQtMi4xOS9OQ0VQbGlicy85LjkuOSIsWyJmdWxsTmFtZSJdPSJOQ0VQbGlicy85LjkuOSIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Ik5DRVBsaWJzLzkuOS45Iix9LFNJT05saWI9e1siZm4iXT0iL2dsYWRlL3AvcmFsL2pu;' export '_ModuleTable001_;' '_ModuleTable002_=dHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9nbnUtOC4zLjAvbXB0LTIuMTkvU0lPTmxpYi8xLjcuNCIsWyJmdWxsTmFtZSJdPSJTSU9ObGliLzEuNy40IixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iU0lPTmxpYi8xLjcuNCIsfSxlc21mPXtbImZuIl09Ii9nbGFkZS9wL3JhbC9qbnRwL0dNVEIvdG9vbHMvbW9kdWxlZmlsZXMvZ251LTguMy4wL21wdC0yLjE5L2VzbWYvOC4wLjAiLFsiZnVsbE5hbWUiXT0iZXNtZi84LjAuMCIsWyJsb2FkT3JkZXIiXT02LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjAiLH0s;' export '_ModuleTable002_;' '_ModuleTable003_=ZnYzPXtbImZuIl09Ii9nbGFkZS93b3JrL2hlaW56ZWxsL2Z2My91ZnMtd2VhdGhlci1tb2RlbC91ZnMtd2VhdGhlci1tb2RlbF9wdWJsaWMtcmVsZWFzZV91cGRhdGUtZnJvbS1kdGMtZGV2ZWxvcC0yMDE5MTIwOS9nbnUvbW9kdWxlZmlsZXMvY2hleWVubmUuZ251L2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09OSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZ251PXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMvZ251LzguMy4wLmx1YSIsWyJmdWxsTmFtZSJdPSJnbnUvOC4zLjAiLFsibG9hZE9yZGVyIl09Mixwcm9wVD17fSxb;' export '_ModuleTable003_;' '_ModuleTable004_=InN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnbnUvOC4zLjAiLH0sbXB0PXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9nbnUvOC4zLjAvbXB0LzIuMTkubHVhIixbImZ1bGxOYW1lIl09Im1wdC8yLjE5IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibXB0LzIuMTkiLH0sbmNhcmNvbXBpbGVycz17WyJmbiJdPSIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvZ251LzguMy4wL25jYXJjb21waWxlcnMvMC41LjAubHVhIixbImZ1bGxOYW1lIl09Im5jYXJjb21waWxlcnMvMC41LjAiLFsibG9h;' export '_ModuleTable004_;' '_ModuleTable005_=ZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuY2FyY29tcGlsZXJzLzAuNS4wIix9LG5jYXJlbnY9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2lkZXAvbmNhcmVudi8xLjMubHVhIixbImZ1bGxOYW1lIl09Im5jYXJlbnYvMS4zIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmNhcmVudi8xLjMiLH0sbmV0Y2RmPXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9nbnUvOC4zLjAvbmV0Y2RmLzQuNi4zLmx1YSIsWyJmdWxsTmFtZSJdPSJu;' export '_ModuleTable005_;' '_ModuleTable006_=ZXRjZGYvNC42LjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuZXRjZGYvNC42LjMiLH0sfSxtcGF0aEE9eyIvZ2xhZGUvd29yay9oZWluemVsbC9mdjMvdWZzLXdlYXRoZXItbW9kZWwvdWZzLXdlYXRoZXItbW9kZWxfcHVibGljLXJlbGVhc2VfdXBkYXRlLWZyb20tZHRjLWRldmVsb3AtMjAxOTEyMDkvZ251L21vZHVsZWZpbGVzL2NoZXllbm5lLmdudSIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVs;' export '_ModuleTable006_;' '_ModuleTable007_=dC9nbnUvOC4zLjAiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvbXB0LzIuMTkvZ251LzguMy4wIiwiL2dsYWRlL3AvcmFsL2pudHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9nbnUtOC4zLjAvbXB0LTIuMTkiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVyczovZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfQ==;' export '_ModuleTable007_;' '_ModuleTable_Sz_=7;' export '_ModuleTable_Sz_;' ncar_pylib '()' '{' . '/glade/u/apps/opt/ncar_pylib/ncar_pylib;' '};' +++ BACIO_LIB4=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a +++ export BACIO_LIB4 +++ CC=gcc +++ export CC +++ CESMDATAROOT=/glade/p/cesmdata/cseg +++ export CESMDATAROOT +++ CESMROOT=/glade/p/cesm +++ export CESMROOT +++ CMAKE_CXX_COMPILER=mpicxx +++ export CMAKE_CXX_COMPILER +++ CMAKE_C_COMPILER=mpicc +++ export CMAKE_C_COMPILER +++ CMAKE_Fortran_COMPILER=mpif90 +++ export CMAKE_Fortran_COMPILER +++ CMAKE_Platform=cheyenne.gnu +++ export CMAKE_Platform +++ COMPILER=gnu +++ export COMPILER +++ __LMOD_REF_COUNT_CPATH='/glade/u/apps/ch/opt/mpt_fmods/2.19/gnu/8.3.0:1;/glade/u/apps/ch/opt/mpt/2.19/include:1' +++ export __LMOD_REF_COUNT_CPATH +++ CPATH=/glade/u/apps/ch/opt/mpt_fmods/2.19/gnu/8.3.0:/glade/u/apps/ch/opt/mpt/2.19/include +++ export CPATH +++ CXX=g++ +++ export CXX +++ DASK_ROOT_CONFIG=/glade/u/apps/config/dask +++ export DASK_ROOT_CONFIG +++ ENV=/etc/profile.d/modules.sh +++ export ENV +++ ESMFMKFILE=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib/esmf.mk +++ export ESMFMKFILE +++ F77=gfortran +++ export F77 +++ F90=gfortran +++ export F90 +++ FC=gfortran +++ export FC +++ __LMOD_REF_COUNT_FPATH=/glade/u/apps/ch/opt/mpt/2.19/include:1 +++ export __LMOD_REF_COUNT_FPATH +++ FPATH=/glade/u/apps/ch/opt/mpt/2.19/include +++ export FPATH +++ GNU_MAJOR_VERSION=8.3 +++ export GNU_MAJOR_VERSION +++ GNU_MINOR_VERSION=0 +++ export GNU_MINOR_VERSION +++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/glade/u/apps/ch/opt/mpt_fmods/2.19/gnu/8.3.0:1;/glade/u/apps/ch/opt/mpt/2.19/lib:1;/glade/u/apps/ch/opt/gnu/8.3.0/lib64:1;/glade/u/apps/ch/opt/gnu/8.3.0/lib64/gcc/x86_64-pc-linux-gnu/8.3.0:1;/ncar/opt/slurm/latest/lib:1;/glade/u/apps/ch/os/usr/lib64:1;/glade/u/apps/ch/os/usr/lib:1;/glade/u/apps/ch/os/lib64:1;/glade/u/apps/ch/os/lib:1' +++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH +++ LD_LIBRARY_PATH=/glade/u/apps/ch/opt/mpt_fmods/2.19/gnu/8.3.0:/glade/u/apps/ch/opt/mpt/2.19/lib:/glade/u/apps/ch/opt/gnu/8.3.0/lib64:/glade/u/apps/ch/opt/gnu/8.3.0/lib64/gcc/x86_64-pc-linux-gnu/8.3.0:/ncar/opt/slurm/latest/lib:/glade/u/apps/ch/os/usr/lib64:/glade/u/apps/ch/os/usr/lib:/glade/u/apps/ch/os/lib64:/glade/u/apps/ch/os/lib +++ export LD_LIBRARY_PATH +++ __LMOD_REF_COUNT_LIBRARY_PATH=/glade/u/apps/ch/opt/mpt/2.19/lib:1 +++ export __LMOD_REF_COUNT_LIBRARY_PATH +++ LIBRARY_PATH=/glade/u/apps/ch/opt/mpt/2.19/lib +++ export LIBRARY_PATH +++ LMOD_COMPILER=gnu +++ export LMOD_COMPILER +++ LMOD_COMPILER_VERSION=8.3.0 +++ export LMOD_COMPILER_VERSION +++ LMOD_FAMILY_COMPILER=gnu +++ export LMOD_FAMILY_COMPILER +++ LMOD_FAMILY_COMPILER_VERSION=8.3.0 +++ export LMOD_FAMILY_COMPILER_VERSION +++ LMOD_FAMILY_MPI=mpt +++ export LMOD_FAMILY_MPI +++ LMOD_FAMILY_MPI_VERSION=2.19 +++ export LMOD_FAMILY_MPI_VERSION +++ LMOD_MPI=mpt_fmods +++ export LMOD_MPI +++ LMOD_MPI_VERSION=2.19 +++ export LMOD_MPI_VERSION +++ __LMOD_REF_COUNT_LOADEDMODULES='ncarenv/1.3:1;gnu/8.3.0:1;mpt/2.19:1;ncarcompilers/0.5.0:1;netcdf/4.6.3:1;esmf/8.0.0:1;NCEPlibs/9.9.9:1;SIONlib/1.7.4:1;fv3:1' +++ export __LMOD_REF_COUNT_LOADEDMODULES +++ LOADEDMODULES=ncarenv/1.3:gnu/8.3.0:mpt/2.19:ncarcompilers/0.5.0:netcdf/4.6.3:esmf/8.0.0:NCEPlibs/9.9.9:SIONlib/1.7.4:fv3 +++ export LOADEDMODULES +++ __LMOD_REF_COUNT_MANPATH='/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/share/man:1;/glade/u/apps/ch/opt/mpt/2.19/man:1;/glade/u/apps/ch/opt/gnu/8.3.0/share/man:1;/ncar/opt/slurm/latest/share/man:1;/usr/local/man:1;/usr/share/man:1;/opt/pbs/share/man:1;/opt/clmgr/man:1;/opt/sgi/share/man:1' +++ export __LMOD_REF_COUNT_MANPATH +++ MANPATH=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/share/man:/glade/u/apps/ch/opt/mpt/2.19/man:/glade/u/apps/ch/opt/gnu/8.3.0/share/man:/ncar/opt/slurm/latest/share/man:/usr/local/man:/usr/share/man:/opt/pbs/share/man:/opt/clmgr/man:/opt/sgi/share/man +++ export MANPATH +++ __LMOD_REF_COUNT_MODULEPATH='/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu:1;/glade/u/apps/ch/modulefiles/default/compilers:1;/glade/u/apps/ch/modulefiles/default/idep:1;/glade/u/apps/ch/modulefiles/default/gnu/8.3.0:1;/glade/u/apps/ch/modulefiles/default/mpt/2.19/gnu/8.3.0:1;/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19:1' +++ export __LMOD_REF_COUNT_MODULEPATH +++ MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu:/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep:/glade/u/apps/ch/modulefiles/default/gnu/8.3.0:/glade/u/apps/ch/modulefiles/default/mpt/2.19/gnu/8.3.0:/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19 +++ export MODULEPATH +++ MPICC_CC=gcc +++ export MPICC_CC +++ MPICXX_CXX=g++ +++ export MPICXX_CXX +++ MPIF08_F08=gfortran +++ export MPIF08_F08 +++ MPIF90_F90=gfortran +++ export MPIF90_F90 +++ MPI_IB_CONGESTED=1 +++ export MPI_IB_CONGESTED +++ MPI_ROOT=/glade/u/apps/ch/opt/mpt/2.19 +++ export MPI_ROOT +++ MPI_SYSLOG_COPY=2 +++ export MPI_SYSLOG_COPY +++ MPT_VERSION=2.19 +++ export MPT_VERSION +++ MP_COMPILER=gnu +++ export MP_COMPILER +++ NCAR_EXCLUDE_ASNEEDED=1 +++ export NCAR_EXCLUDE_ASNEEDED +++ NCAR_HOST=cheyenne +++ export NCAR_HOST +++ NCAR_INC_GNU=/glade/u/apps/ch/opt/gnu/8.3.0/include +++ export NCAR_INC_GNU +++ NCAR_INC_NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include +++ export NCAR_INC_NETCDF +++ NCAR_LDFLAGS_GNU=/glade/u/apps/ch/opt/gnu/8.3.0/lib64 +++ export NCAR_LDFLAGS_GNU +++ NCAR_LDFLAGS_GNU32=/glade/u/apps/ch/opt/gnu/8.3.0/lib64/gcc/x86_64-pc-linux-gnu/8.3.0 +++ export NCAR_LDFLAGS_GNU32 +++ NCAR_LDFLAGS_NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/lib +++ export NCAR_LDFLAGS_NETCDF +++ NCAR_LIBS_MPT='-lrt -ldl' +++ export NCAR_LIBS_MPT +++ NCAR_LIBS_NETCDF='-Wl,-Bstatic -lnetcdff -lnetcdf -lhdf5hl_fortran -lhdf5_hl -lhdf5_fortran -lhdf5 -lsz -lz -Wl,-Bdynamic -lm -ldl' +++ export NCAR_LIBS_NETCDF +++ NCAR_RANK_MPT=1000 +++ export NCAR_RANK_MPT +++ NCAR_ROOT_GNU=/glade/u/apps/ch/opt/gnu/8.3.0/ +++ export NCAR_ROOT_GNU +++ NCAR_ROOT_MPT=/glade/u/apps/ch/opt/mpt/2.19 +++ export NCAR_ROOT_MPT +++ NCAR_ROOT_NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/ +++ export NCAR_ROOT_NETCDF +++ NCAR_WRAPPER_MPI=/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi +++ export NCAR_WRAPPER_MPI +++ NCEPLIBS_DIR=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19 +++ export NCEPLIBS_DIR +++ NEMSIO_INC=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/include +++ export NEMSIO_INC +++ NEMSIO_LIB=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a +++ export NEMSIO_LIB +++ NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/ +++ export NETCDF +++ OMP_NUM_THREADS=1 +++ export OMP_NUM_THREADS +++ OMP_STACKSIZE=64000K +++ export OMP_STACKSIZE +++ OSHCC_CC=gcc +++ export OSHCC_CC +++ OSHCXX_CXX=g++ +++ export OSHCXX_CXX +++ OSHF90_F90=gfortran +++ export OSHF90_F90 +++ __LMOD_REF_COUNT_PATH='/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/bin:1;/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/bin:1;/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0:1;/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi:1;/glade/u/apps/ch/opt/mpt/2.19/bin:1;/glade/u/apps/ch/opt/gnu/8.3.0/bin:1;/glade/u/apps/opt/globus-utils:1;/glade/u/apps/ch/opt/usr/bin:1;/ncar/opt/slurm/latest/bin:1;/opt/clmgr/sbin:1;/opt/clmgr/bin:1;/opt/sgi/sbin:1;/opt/sgi/bin:1;/glade/u/apps/ch/opt/lmod/8.1.7/bin:1;/glade/u/home/heinzell/bin:1;/usr/local/bin:1;/usr/bin:1;/bin:2;/usr/bin/X11:1;/usr/games:1;/opt/ibutils/bin:1;/usr/lib/mit/bin:1;/opt/pbs/bin:1;/sbin:1;/glade/u/apps/opt/hpss/hpss-client.5.0.2.p5/bin:1;/glade/u/apps/ch/os/usr/bin:1' +++ export __LMOD_REF_COUNT_PATH +++ PATH=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/bin:/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/bin:/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0:/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi:/glade/u/apps/ch/opt/mpt/2.19/bin:/glade/u/apps/ch/opt/gnu/8.3.0/bin:/glade/u/apps/opt/globus-utils:/glade/u/apps/ch/opt/usr/bin:/ncar/opt/slurm/latest/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/glade/u/apps/ch/opt/lmod/8.1.7/bin:/glade/u/home/heinzell/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games:/opt/ibutils/bin:/usr/lib/mit/bin:/opt/pbs/bin:/sbin:/glade/u/apps/opt/hpss/hpss-client.5.0.2.p5/bin:/glade/u/apps/ch/os/usr/bin +++ export PATH +++ PERL5LIB=/glade/u/apps/ch/os/usr/lib/perl5/5.18.2/ +++ export PERL5LIB +++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/lib/pkgconfig:1 +++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH +++ PKG_CONFIG_PATH=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/lib/pkgconfig +++ export PKG_CONFIG_PATH +++ SIONLIB=/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19 +++ export SIONLIB +++ SIONLIB_INC='-I/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/include -I/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/include/mod_64' +++ export SIONLIB_INC +++ SIONLIB_LIB='-L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none' +++ export SIONLIB_LIB +++ SP_LIBd=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a +++ export SP_LIBd +++ W3EMC_LIBd=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a +++ export W3EMC_LIBd +++ W3NCO_LIBd=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a +++ export W3NCO_LIBd +++ WRFIO_NCD_LARGE_FILE_SUPPORT=1 +++ export WRFIO_NCD_LARGE_FILE_SUPPORT +++ __LMOD_REF_COUNT__LMFILES_='/glade/u/apps/ch/modulefiles/default/idep/ncarenv/1.3.lua:1;/glade/u/apps/ch/modulefiles/default/compilers/gnu/8.3.0.lua:1;/glade/u/apps/ch/modulefiles/default/gnu/8.3.0/mpt/2.19.lua:1;/glade/u/apps/ch/modulefiles/default/gnu/8.3.0/ncarcompilers/0.5.0.lua:1;/glade/u/apps/ch/modulefiles/default/gnu/8.3.0/netcdf/4.6.3.lua:1;/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19/esmf/8.0.0:1;/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19/NCEPlibs/9.9.9:1;/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19/SIONlib/1.7.4:1;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu/fv3:1' +++ export __LMOD_REF_COUNT__LMFILES_ +++ _LMFILES_=/glade/u/apps/ch/modulefiles/default/idep/ncarenv/1.3.lua:/glade/u/apps/ch/modulefiles/default/compilers/gnu/8.3.0.lua:/glade/u/apps/ch/modulefiles/default/gnu/8.3.0/mpt/2.19.lua:/glade/u/apps/ch/modulefiles/default/gnu/8.3.0/ncarcompilers/0.5.0.lua:/glade/u/apps/ch/modulefiles/default/gnu/8.3.0/netcdf/4.6.3.lua:/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19/esmf/8.0.0:/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19/NCEPlibs/9.9.9:/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19/SIONlib/1.7.4:/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu/fv3 +++ export _LMFILES_ +++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImdudSIsWyJtcGkiXT0ibXB0Iix9LG1UPXtOQ0VQbGlicz17WyJmbiJdPSIvZ2xhZGUvcC9yYWwvam50cC9HTVRCL3Rvb2xzL21vZHVsZWZpbGVzL2dudS04LjMuMC9tcHQtMi4xOS9OQ0VQbGlicy85LjkuOSIsWyJmdWxsTmFtZSJdPSJOQ0VQbGlicy85LjkuOSIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Ik5DRVBsaWJzLzkuOS45Iix9LFNJT05saWI9e1siZm4iXT0iL2dsYWRlL3AvcmFsL2pu +++ export _ModuleTable001_ +++ _ModuleTable002_=dHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9nbnUtOC4zLjAvbXB0LTIuMTkvU0lPTmxpYi8xLjcuNCIsWyJmdWxsTmFtZSJdPSJTSU9ObGliLzEuNy40IixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iU0lPTmxpYi8xLjcuNCIsfSxlc21mPXtbImZuIl09Ii9nbGFkZS9wL3JhbC9qbnRwL0dNVEIvdG9vbHMvbW9kdWxlZmlsZXMvZ251LTguMy4wL21wdC0yLjE5L2VzbWYvOC4wLjAiLFsiZnVsbE5hbWUiXT0iZXNtZi84LjAuMCIsWyJsb2FkT3JkZXIiXT02LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjAiLH0s +++ export _ModuleTable002_ +++ _ModuleTable003_=ZnYzPXtbImZuIl09Ii9nbGFkZS93b3JrL2hlaW56ZWxsL2Z2My91ZnMtd2VhdGhlci1tb2RlbC91ZnMtd2VhdGhlci1tb2RlbF9wdWJsaWMtcmVsZWFzZV91cGRhdGUtZnJvbS1kdGMtZGV2ZWxvcC0yMDE5MTIwOS9nbnUvbW9kdWxlZmlsZXMvY2hleWVubmUuZ251L2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09OSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZ251PXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMvZ251LzguMy4wLmx1YSIsWyJmdWxsTmFtZSJdPSJnbnUvOC4zLjAiLFsibG9hZE9yZGVyIl09Mixwcm9wVD17fSxb +++ export _ModuleTable003_ +++ _ModuleTable004_=InN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnbnUvOC4zLjAiLH0sbXB0PXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9nbnUvOC4zLjAvbXB0LzIuMTkubHVhIixbImZ1bGxOYW1lIl09Im1wdC8yLjE5IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibXB0LzIuMTkiLH0sbmNhcmNvbXBpbGVycz17WyJmbiJdPSIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvZ251LzguMy4wL25jYXJjb21waWxlcnMvMC41LjAubHVhIixbImZ1bGxOYW1lIl09Im5jYXJjb21waWxlcnMvMC41LjAiLFsibG9h +++ export _ModuleTable004_ +++ _ModuleTable005_=ZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuY2FyY29tcGlsZXJzLzAuNS4wIix9LG5jYXJlbnY9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2lkZXAvbmNhcmVudi8xLjMubHVhIixbImZ1bGxOYW1lIl09Im5jYXJlbnYvMS4zIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmNhcmVudi8xLjMiLH0sbmV0Y2RmPXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9nbnUvOC4zLjAvbmV0Y2RmLzQuNi4zLmx1YSIsWyJmdWxsTmFtZSJdPSJu +++ export _ModuleTable005_ +++ _ModuleTable006_=ZXRjZGYvNC42LjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuZXRjZGYvNC42LjMiLH0sfSxtcGF0aEE9eyIvZ2xhZGUvd29yay9oZWluemVsbC9mdjMvdWZzLXdlYXRoZXItbW9kZWwvdWZzLXdlYXRoZXItbW9kZWxfcHVibGljLXJlbGVhc2VfdXBkYXRlLWZyb20tZHRjLWRldmVsb3AtMjAxOTEyMDkvZ251L21vZHVsZWZpbGVzL2NoZXllbm5lLmdudSIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVs +++ export _ModuleTable006_ +++ _ModuleTable007_=dC9nbnUvOC4zLjAiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvbXB0LzIuMTkvZ251LzguMy4wIiwiL2dsYWRlL3AvcmFsL2pudHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9nbnUtOC4zLjAvbXB0LTIuMTkiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVyczovZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfQ== +++ export _ModuleTable007_ +++ _ModuleTable_Sz_=7 +++ export _ModuleTable_Sz_ +++ : -s sh ++ eval ++ module list +++ /glade/u/apps/ch/opt/lmod/8.1.7/lmod/lmod/libexec/lmod bash list + +Currently Loaded Modules: + 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 + 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 + 3) mpt/2.19 6) esmf/8.0.0 9) fv3 + + + ++ eval 'MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu:/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep:/glade/u/apps/ch/modulefiles/default/gnu/8.3.0:/glade/u/apps/ch/modulefiles/default/mpt/2.19/gnu/8.3.0:/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19;' export 'MODULEPATH;' '_ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImdudSIsWyJtcGkiXT0ibXB0Iix9LG1UPXtOQ0VQbGlicz17WyJmbiJdPSIvZ2xhZGUvcC9yYWwvam50cC9HTVRCL3Rvb2xzL21vZHVsZWZpbGVzL2dudS04LjMuMC9tcHQtMi4xOS9OQ0VQbGlicy85LjkuOSIsWyJmdWxsTmFtZSJdPSJOQ0VQbGlicy85LjkuOSIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Ik5DRVBsaWJzLzkuOS45Iix9LFNJT05saWI9e1siZm4iXT0iL2dsYWRlL3AvcmFsL2pu;' export '_ModuleTable001_;' '_ModuleTable002_=dHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9nbnUtOC4zLjAvbXB0LTIuMTkvU0lPTmxpYi8xLjcuNCIsWyJmdWxsTmFtZSJdPSJTSU9ObGliLzEuNy40IixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iU0lPTmxpYi8xLjcuNCIsfSxlc21mPXtbImZuIl09Ii9nbGFkZS9wL3JhbC9qbnRwL0dNVEIvdG9vbHMvbW9kdWxlZmlsZXMvZ251LTguMy4wL21wdC0yLjE5L2VzbWYvOC4wLjAiLFsiZnVsbE5hbWUiXT0iZXNtZi84LjAuMCIsWyJsb2FkT3JkZXIiXT02LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjAiLH0s;' export '_ModuleTable002_;' '_ModuleTable003_=ZnYzPXtbImZuIl09Ii9nbGFkZS93b3JrL2hlaW56ZWxsL2Z2My91ZnMtd2VhdGhlci1tb2RlbC91ZnMtd2VhdGhlci1tb2RlbF9wdWJsaWMtcmVsZWFzZV91cGRhdGUtZnJvbS1kdGMtZGV2ZWxvcC0yMDE5MTIwOS9nbnUvbW9kdWxlZmlsZXMvY2hleWVubmUuZ251L2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09OSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZ251PXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMvZ251LzguMy4wLmx1YSIsWyJmdWxsTmFtZSJdPSJnbnUvOC4zLjAiLFsibG9hZE9yZGVyIl09Mixwcm9wVD17fSxb;' export '_ModuleTable003_;' '_ModuleTable004_=InN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnbnUvOC4zLjAiLH0sbXB0PXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9nbnUvOC4zLjAvbXB0LzIuMTkubHVhIixbImZ1bGxOYW1lIl09Im1wdC8yLjE5IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibXB0LzIuMTkiLH0sbmNhcmNvbXBpbGVycz17WyJmbiJdPSIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvZ251LzguMy4wL25jYXJjb21waWxlcnMvMC41LjAubHVhIixbImZ1bGxOYW1lIl09Im5jYXJjb21waWxlcnMvMC41LjAiLFsibG9h;' export '_ModuleTable004_;' '_ModuleTable005_=ZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuY2FyY29tcGlsZXJzLzAuNS4wIix9LG5jYXJlbnY9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2lkZXAvbmNhcmVudi8xLjMubHVhIixbImZ1bGxOYW1lIl09Im5jYXJlbnYvMS4zIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmNhcmVudi8xLjMiLH0sbmV0Y2RmPXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9nbnUvOC4zLjAvbmV0Y2RmLzQuNi4zLmx1YSIsWyJmdWxsTmFtZSJdPSJu;' export '_ModuleTable005_;' '_ModuleTable006_=ZXRjZGYvNC42LjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuZXRjZGYvNC42LjMiLH0sfSxtcGF0aEE9eyIvZ2xhZGUvd29yay9oZWluemVsbC9mdjMvdWZzLXdlYXRoZXItbW9kZWwvdWZzLXdlYXRoZXItbW9kZWxfcHVibGljLXJlbGVhc2VfdXBkYXRlLWZyb20tZHRjLWRldmVsb3AtMjAxOTEyMDkvZ251L21vZHVsZWZpbGVzL2NoZXllbm5lLmdudSIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVs;' export '_ModuleTable006_;' '_ModuleTable007_=dC9nbnUvOC4zLjAiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvbXB0LzIuMTkvZ251LzguMy4wIiwiL2dsYWRlL3AvcmFsL2pudHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9nbnUtOC4zLjAvbXB0LTIuMTkiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVyczovZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfQ==;' export '_ModuleTable007_;' '_ModuleTable_Sz_=7;' export '_ModuleTable_Sz_;' +++ MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu:/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep:/glade/u/apps/ch/modulefiles/default/gnu/8.3.0:/glade/u/apps/ch/modulefiles/default/mpt/2.19/gnu/8.3.0:/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19 +++ export MODULEPATH +++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImdudSIsWyJtcGkiXT0ibXB0Iix9LG1UPXtOQ0VQbGlicz17WyJmbiJdPSIvZ2xhZGUvcC9yYWwvam50cC9HTVRCL3Rvb2xzL21vZHVsZWZpbGVzL2dudS04LjMuMC9tcHQtMi4xOS9OQ0VQbGlicy85LjkuOSIsWyJmdWxsTmFtZSJdPSJOQ0VQbGlicy85LjkuOSIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Ik5DRVBsaWJzLzkuOS45Iix9LFNJT05saWI9e1siZm4iXT0iL2dsYWRlL3AvcmFsL2pu +++ export _ModuleTable001_ +++ _ModuleTable002_=dHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9nbnUtOC4zLjAvbXB0LTIuMTkvU0lPTmxpYi8xLjcuNCIsWyJmdWxsTmFtZSJdPSJTSU9ObGliLzEuNy40IixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iU0lPTmxpYi8xLjcuNCIsfSxlc21mPXtbImZuIl09Ii9nbGFkZS9wL3JhbC9qbnRwL0dNVEIvdG9vbHMvbW9kdWxlZmlsZXMvZ251LTguMy4wL21wdC0yLjE5L2VzbWYvOC4wLjAiLFsiZnVsbE5hbWUiXT0iZXNtZi84LjAuMCIsWyJsb2FkT3JkZXIiXT02LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjAiLH0s +++ export _ModuleTable002_ +++ _ModuleTable003_=ZnYzPXtbImZuIl09Ii9nbGFkZS93b3JrL2hlaW56ZWxsL2Z2My91ZnMtd2VhdGhlci1tb2RlbC91ZnMtd2VhdGhlci1tb2RlbF9wdWJsaWMtcmVsZWFzZV91cGRhdGUtZnJvbS1kdGMtZGV2ZWxvcC0yMDE5MTIwOS9nbnUvbW9kdWxlZmlsZXMvY2hleWVubmUuZ251L2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09OSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZ251PXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMvZ251LzguMy4wLmx1YSIsWyJmdWxsTmFtZSJdPSJnbnUvOC4zLjAiLFsibG9hZE9yZGVyIl09Mixwcm9wVD17fSxb +++ export _ModuleTable003_ +++ _ModuleTable004_=InN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnbnUvOC4zLjAiLH0sbXB0PXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9nbnUvOC4zLjAvbXB0LzIuMTkubHVhIixbImZ1bGxOYW1lIl09Im1wdC8yLjE5IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibXB0LzIuMTkiLH0sbmNhcmNvbXBpbGVycz17WyJmbiJdPSIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvZ251LzguMy4wL25jYXJjb21waWxlcnMvMC41LjAubHVhIixbImZ1bGxOYW1lIl09Im5jYXJjb21waWxlcnMvMC41LjAiLFsibG9h +++ export _ModuleTable004_ +++ _ModuleTable005_=ZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuY2FyY29tcGlsZXJzLzAuNS4wIix9LG5jYXJlbnY9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2lkZXAvbmNhcmVudi8xLjMubHVhIixbImZ1bGxOYW1lIl09Im5jYXJlbnYvMS4zIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmNhcmVudi8xLjMiLH0sbmV0Y2RmPXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9nbnUvOC4zLjAvbmV0Y2RmLzQuNi4zLmx1YSIsWyJmdWxsTmFtZSJdPSJu +++ export _ModuleTable005_ +++ _ModuleTable006_=ZXRjZGYvNC42LjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuZXRjZGYvNC42LjMiLH0sfSxtcGF0aEE9eyIvZ2xhZGUvd29yay9oZWluemVsbC9mdjMvdWZzLXdlYXRoZXItbW9kZWwvdWZzLXdlYXRoZXItbW9kZWxfcHVibGljLXJlbGVhc2VfdXBkYXRlLWZyb20tZHRjLWRldmVsb3AtMjAxOTEyMDkvZ251L21vZHVsZWZpbGVzL2NoZXllbm5lLmdudSIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVs +++ export _ModuleTable006_ +++ _ModuleTable007_=dC9nbnUvOC4zLjAiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvbXB0LzIuMTkvZ251LzguMy4wIiwiL2dsYWRlL3AvcmFsL2pudHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9nbnUtOC4zLjAvbXB0LTIuMTkiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVyczovZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfQ== +++ export _ModuleTable007_ +++ _ModuleTable_Sz_=7 +++ export _ModuleTable_Sz_ +++ : -s sh ++ eval ++ cd build_fv3_1 ++ cmake /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -- The C compiler identification is GNU 8.3.0 -- The CXX compiler identification is GNU 8.3.0 +-- The Fortran compiler identification is GNU 8.3.0 -- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -- works -- Detecting C compiler ABI info @@ -2286,14 +2069,39 @@ Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMS -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done --- The Fortran compiler identification is GNU 8.3.0 -- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -- works -- Detecting Fortran compiler ABI info -- Detecting Fortran compiler ABI info - done -- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 supports Fortran 90 -- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 supports Fortran 90 -- yes --- Dynamics compiled with 32-bit option, adjust fv_sat_adj types +-- Found MPI_C: /usr/lib64/libpthread.so;/glade/u/apps/ch/opt/mpt/2.19/lib/libmpi.so +-- Found MPI_CXX: /usr/lib64/libpthread.so;/glade/u/apps/ch/opt/mpt/2.19/lib/libmpi++.so;/glade/u/apps/ch/opt/mpt/2.19/lib/libmpi.so +-- Found MPI_Fortran: /usr/lib64/libpthread.so;/glade/u/apps/ch/opt/mpt/2.19/lib/libmpi.so +ESMFMKFILE: /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib/esmf.mk + Found ESMF: +ESMF_VERSION_MAJOR: 8 +ESMF_F90COMPILEPATHS: /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod;/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include;/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include +ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib +ESMF_F90ESMFLINKLIBS: -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf +-- Found ESMF: /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod;/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include;/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include (found version "8.0.0") + +Setting configuration for cheyenne.gnu + +C compiler: GNU 8.3.0 (mpicc) +CXX compiler: GNU 8.3.0 (mpicxx) +Fortran compiler: GNU 8.3.0 (mpif90) + +DEBUG is disabled (optimized build) +REPRO is disabled +32BIT is disabled +OPENMP is ENABLED +AVX2 is disabled +INLINE_POST is disabled + + +Selected physics package: gfs + -- Detecting OpenMP flags for GNU C compiler: -fopenmp -- Detecting OpenMP flags for GNU C++ compiler: -fopenmp -- Detecting OpenMP flags for GNU Fortran compiler: -fopenmp @@ -2313,9486 +2121,753 @@ Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMS -- Detecting OpenMP flags for GNU C++ compiler: -fopenmp -- Detecting OpenMP flags for GNU Fortran compiler: -fopenmp -- Enable OpenMP support for C/C++/Fortran compiler -INFOGot SCHEMES from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_stochastics_cap.F90 +INFOGot CCPP_SCHEMES from environment variable: /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfpbltq.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfscuq.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/satmedmfvdifq.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninshoc.f +INFOGot CAPS from environment variable: /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_stochastics_cap.F90 +Force 64 bits in CCPP_layer -- Configuring done -- Generating done -CMake Warning: - Manually-specified variables were not used by the project: - - LEGACY_INTEL - - --- Build files have been written to: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". +-- Build files have been written to: /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_1 ++ make -j 3 Scanning dependencies of target ccpp -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fopenmp -fopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_dl.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fopenmp -fopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_fields_idx.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fopenmp -fopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_utils.c -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fopenmp -fopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_xml.c -[ 8%] Linking Fortran static library libccpp.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar qc libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 9%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fopenmp -fopenmp -O2 -fPIC -o CMakeFiles/test_fields.dir/test_fields.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests/test_fields.c -[ 9%] Linking C executable test_fields -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -O2 -fPIC -fopenmp -fopenmp -O2 -fPIC CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lgfortran -lgfortran -lquadmath -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -[ 10%] Linking Fortran executable test_check -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_check.dir/test_check.f90.o -o test_check ../libccpp.a /usr/lib64/libxml2.so -ldl -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 11%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -[ 12%] Linking Fortran executable test_init_finalize -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize ../libccpp.a /usr/lib64/libxml2.so -ldl -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". +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 +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 FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o +[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o +[ 2%] Linking Fortran static library libccpp.a +[ 2%] Built target ccpp +[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o +[ 2%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.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 Scanning dependencies of target ccppphys -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fno-range-check -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -ffree-line-length-none -fdefault-real-8 -ffree-form -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -ffree-form -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_fast_physics_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_physics_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_radiation_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_stochastics_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_time_vary_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_cap.F90.o.provides.build -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1997:72: - - & del(i,:), Sw, Sw1) - 1 -Warning: Type mismatch in argument ‘km’ at (1); passed INTEGER(4) to REAL(8) [-Wargument-mismatch] -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F:2009:72: - - call diff_1d_ptend(levs, dtstab, Fw, Kpt, del(i,:), Sw) - 1 -Warning: Missing actual argument for argument ‘s’ at (1) -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -ffree-form -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 99%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -[100%] Linking Fortran static library libccppphys.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /usr/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_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/mfscu.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_aerosols.f.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/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o -/usr/bin/ranlib libccppphys.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[2]: Nothing to be done for 'preinstall'. -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Release" --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib/libccpp.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib/cmake/ccpp-config-release.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_xml.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_utils.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_dl.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_dl.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_errors.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fields.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_strings.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_suite.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_types.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_xml.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_api.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib/libccppphys.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib/cmake/ccppphys-config-release.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_fast_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_stochastics_cap.mod -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - +[ 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 +[ 3%] Linking Fortran static library libfv3cpl.a +[ 3%] Built target fv3cpl +[ 3%] 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 CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.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 +[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o +[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.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/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 CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1386:0: + + #define MPP_TYPE_ integer(INT_KIND) +Warning: "MPP_TYPE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1374:0: -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_cplfields.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=Y # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_data.F90 -o CCPP_layer/CCPP_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=Y # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... - -Build CCPP layer ... - -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DOVERLOAD_R4 CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c FV3GFS_io.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_write_internal_state.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c post_gfs_stub.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_fv3_config.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c time_utils.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c atmos_model.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_fcst_grid_comp.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 -a - module_fv3_config.o -a - module_fcst_grid_comp.o -a - time_utils.o -a - fv3_cap.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; \ -gmake nems \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL CCPP_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - + #define MPP_TYPE_ logical(LONG_KIND) +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1387:0: -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:26:57 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_NEMS_UTILS.tmp.o module_NEMS_UTILS.o -'module_NEMS_UTILS.tmp.o' -> 'module_NEMS_UTILS.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:26:57 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR_methods.tmp.o module_MEDIATOR_methods.o -'module_MEDIATOR_methods.tmp.o' -> 'module_MEDIATOR_methods.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:26:57 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:26:57 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR_SpaceWeather.tmp.o module_MEDIATOR_SpaceWeather.o -'module_MEDIATOR_SpaceWeather.tmp.o' -> 'module_MEDIATOR_SpaceWeather.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:26:57 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_EARTH_INTERNAL_STATE.tmp.o module_EARTH_INTERNAL_STATE.o -'module_EARTH_INTERNAL_STATE.tmp.o' -> 'module_EARTH_INTERNAL_STATE.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:26:57 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_EARTH_GRID_COMP.tmp.o module_EARTH_GRID_COMP.o -'module_EARTH_GRID_COMP.tmp.o' -> 'module_EARTH_GRID_COMP.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:26:57 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_NEMS_INTERNAL_STATE.tmp.o module_NEMS_INTERNAL_STATE.o -'module_NEMS_INTERNAL_STATE.tmp.o' -> 'module_NEMS_INTERNAL_STATE.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:26:57 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_NEMS_GRID_COMP.tmp.o module_NEMS_GRID_COMP.o -'module_NEMS_GRID_COMP.tmp.o' -> 'module_NEMS_GRID_COMP.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:26:57 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_NEMS_Rusage.tmp.o module_NEMS_Rusage.o -'module_NEMS_Rusage.tmp.o' -> 'module_NEMS_Rusage.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:26:57 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v MAIN_NEMS.tmp.o MAIN_NEMS.o -'MAIN_NEMS.tmp.o' -> 'MAIN_NEMS.o' -echo libgocart is -libgocart is -echo extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=gfortran -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libccppdriver.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libstochastic_physics.a -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -L/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/fv3_10.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/fv3_10.exe -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_10 BUILD_ENV=cheyenne.gnu 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y' NEMS_BUILDOPT= clean -Will copy modules.nems and NEMS.x as fv3_10 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -+ elapsed=409 -+ echo 'Elapsed time 409 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y finished' -Elapsed time 409 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.gnu -+ BUILD_TARGET=cheyenne.gnu -+ readonly MAKE_OPT= -+ MAKE_OPT= -+ readonly BUILD_NAME=fv3_1 -+ BUILD_NAME=fv3_1 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -cheyenne1 -+ echo 'Compiling into fv3_1.exe on cheyenne.gnu' -Compiling into fv3_1.exe on cheyenne.gnu -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake -+ [[ cheyenne.gnu == cheyenne.* ]] -+ MAKE_THREADS=3 -+ MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ '' == *\C\C\P\P\=\Y* ]] -+ [[ '' == *\W\W\3\=\Y* ]] -+ [[ '' == *\D\E\B\U\G\=\Y* ]] -+ [[ '' == *\D\E\B\U\G\=\Y* ]] -+ [[ '' == *\R\E\P\R\O\=\Y* ]] -+ NEMS_BUILDOPT= -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_1 BUILD_ENV=cheyenne.gnu FV3_MAKEOPT= NEMS_BUILDOPT= distclean -Will copy modules.nems and NEMS.x as fv3_1 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ - exec gmake -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -cc -E four_to_grid_stochy.F > four_to_grid_stochy.f -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -GNUmakefile:16: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk: No such file or directory -Components in linker order: FV3 FMS -FV3: include -GNUmakefile:70: : component FV3 makefile fragment is missing -FMS: include -GNUmakefile:70: : component FMS makefile fragment is missing -gmake[1]: *** No rule to make target '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk'. -gmake[1]: Failed to remake makefile '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk'. -rm -f -f *.tmp.f90 *.lst *.o *.mod lm map -cd ENS_Cpl ; gmake clean -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_1 BUILD_ENV=cheyenne.gnu FV3_MAKEOPT= NEMS_BUILDOPT= build -Will copy modules.nems and NEMS.x as fv3_1 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/modulefiles/cheyenne.gnu/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/modules.fv3_1" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/modules.fv3_1 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/conf/configure.fv3.cheyenne.gnu /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ -exec gmake all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - + #define MPI_TYPE_ MPI_INTEGER4 +Warning: "MPI_TYPE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1376:0: -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -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 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../memutils/memuse.c -o ../memutils/memuse.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mpp/threadloc.c -o ../mpp/threadloc.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_domains.F90 -o ../mpp/mpp_domains.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_grid.F90 -o ../diag_manager/diag_grid.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../sat_vapor_pres/sat_vapor_pres.F90 -o ../sat_vapor_pres/sat_vapor_pres.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_axis.F90 -o ../diag_manager/diag_axis.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/xbt_drop_rate_adjust.f90 -o ../oda_tools/xbt_drop_rate_adjust.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp_external.F90 -o ../time_interp/time_interp_external.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_output.F90 -o ../diag_manager/diag_output.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_util.F90 -o ../diag_manager/diag_util.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manager.F90 -o ../diag_manager/diag_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Compiling into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - + #define MPI_TYPE_ MPI_INTEGER8 +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1390:0: -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_cplfields.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -physics/ugwp_driver_v0.f:1995:72: - - & del(i,:), Sw, Sw1) - 1 -Warning: Type mismatch in argument ‘km’ at (1); passed INTEGER(4) to REAL(8) [-Wargument-mismatch] -physics/ugwp_driver_v0.f:2007:72: - - call diff_1d_ptend(levs, dtstab, Fw, Kpt, del(i,:), Sw) - 1 -Warning: Missing actual argument for argument ‘s’ at (1) -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -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 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -a - physics/co2hc.o -a - physics/date_def.o -a - physics/dcyc2.o -a - physics/dcyc2.pre.rad.o -a - physics/efield.o -a - physics/get_prs.o -a - physics/gocart_tracer_config_stub.o -a - physics/gscond.o -a - physics/gscondp.o -a - physics/gwdc.o -a - physics/gwdps.o -a - physics/ugwp_driver_v0.o -a - physics/cires_orowam2017.o -a - physics/h2o_def.o -a - physics/h2oc.o -a - physics/h2ohdc.o -a - physics/h2ophys.o -a - physics/ideaca.o -a - physics/idea_co2.o -a - physics/idea_composition.o -a - physics/idea_dissipation.o -a - physics/idea_h2o.o -a - physics/idea_ion.o -a - physics/idea_o2_o3.o -a - physics/idea_phys.o -a - physics/idea_solar_heating.o -a - physics/idea_tracer.o -a - physics/iounitdef.o -a - physics/lrgsclr.o -a - physics/mersenne_twister.o -a - physics/mfpbl.o -a - physics/mfpblt.o -a - physics/mfpbltq.o -a - physics/mfscu.o -a - physics/mfscuq.o -a - physics/module_bfmicrophysics.o -a - physics/moninedmf.o -a - physics/moninedmf_hafs.o -a - physics/moninp.o -a - physics/moninp1.o -a - physics/moninq.o -a - physics/moninq1.o -a - physics/moninshoc.o -a - physics/mstadb.o -a - physics/mstadbtn.o -a - physics/mstadbtn2.o -a - physics/mstcnv.o -a - physics/namelist_soilveg.o -a - physics/ozne_def.o -a - physics/iccn_def.o -a - physics/aerclm_def.o -a - physics/ozphys.o -a - physics/ozphys_2015.o -a - physics/physparam.o -a - physics/precpd.o -a - physics/precpd_shoc.o -a - physics/precpdp.o -a - physics/progt2.o -a - physics/progtm_module.o -a - physics/rad_initialize.o -a - physics/radiation_aerosols.o -a - physics/radiation_astronomy.o -a - physics/radiation_clouds.o -a - physics/radiation_gases.o -a - physics/radiation_surface.o -a - physics/radlw_datatb.o -a - physics/radlw_main.o -a - physics/radlw_param.o -a - physics/radsw_datatb.o -a - physics/radsw_main.o -a - physics/radsw_param.o -a - physics/rascnvv2.o -a - physics/rayleigh_damp.o -a - physics/rayleigh_damp_mesopause.o -a - physics/samfaerosols.o -a - physics/samfdeepcnv.o -a - physics/samfshalcnv.o -a - physics/sascnv.o -a - physics/sascnvn.o -a - physics/satmedmfvdif.o -a - physics/satmedmfvdifq.o -a - physics/set_soilveg.o -a - physics/sfc_cice.o -a - physics/sfc_diag.o -a - physics/sfc_diff.o -a - physics/sfc_drv.o -a - physics/sfc_noahmp_drv.o -a - physics/sfc_nst.o -a - physics/sfc_ocean.o -a - physics/sfc_sice.o -a - physics/sflx.o -a - physics/shalcnv.o -a - physics/shalcv.o -a - physics/shalcv_1lyr.o -a - physics/shalcv_fixdp.o -a - physics/shalcv_opr.o -a - physics/tracer_const_h.o -a - physics/tridi2t3.o -a - physics/calpreciptype.o -a - physics/funcphys.o -a - physics/gcm_shoc.o -a - physics/get_prs_fv3.o -a - physics/h2ointerp.o -a - physics/module_nst_model.o -a - physics/module_nst_parameters.o -a - physics/module_nst_water_prop.o -a - physics/ozinterp.o -a - physics/module_wrf_utl.o -a - physics/noahmp_tables.o -a - physics/module_sf_noahmplsm.o -a - physics/module_sf_noahmp_glacier.o -a - physics/iccninterp.o -a - physics/aerinterp.o -a - physics/wam_f107_kp_mod.o -a - physics/aer_cloud.o -a - physics/cldmacro.o -a - physics/cldwat2m_micro.o -a - physics/gfs_phy_tracer_config.o -a - physics/machine.o -a - physics/num_parthds.o -a - physics/sfcsub.o -a - physics/wv_saturation.o -a - physics/GFDL_parse_tracers.o -a - physics/gcycle.o -a - physics/cires_ugwp_initialize.o -a - physics/cires_ugwp_module.o -a - physics/cires_ugwp_utils.o -a - physics/cires_ugwp_triggers.o -a - physics/cires_ugwp_solvers.o -a - physics/cires_vert_lsatdis.o -a - physics/cires_vert_orodis.o -a - physics/cires_vert_wmsdis.o -a - physics/gfdl_cloud_microphys.o -a - physics/micro_mg_utils.o -a - physics/micro_mg2_0.o -a - physics/micro_mg3_0.o -a - physics/m_micro_driver.o -a - physics/cs_conv.o -a - physics/GFS_debug.o -a - physics/module_mp_radar.o -a - physics/module_mp_thompson_gfs.o -a - physics/module_mp_wsm6_fv3.o -a - physics/physcons.o -a - physics/surface_perturbation.o -a - GFS_layer/GFS_abstraction_layer.o -a - GFS_layer/GFS_diagnostics.o -a - GFS_layer/GFS_driver.o -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c FV3GFS_io.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_write_internal_state.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c post_gfs_stub.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -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_cmp.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_cmp.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_fv3_config.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c time_utils.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c atmos_model.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_fcst_grid_comp.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 -a - module_fv3_config.o -a - module_fcst_grid_comp.o -a - time_utils.o -a - fv3_cap.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; \ -gmake nems \ - COMPONENTS="FMS FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - + #define MPP_TYPE_CREATE_ mpp_type_create_int8 +Warning: "MPP_TYPE_CREATE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1385:0: -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:14:05 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_NEMS_UTILS.tmp.o module_NEMS_UTILS.o -'module_NEMS_UTILS.tmp.o' -> 'module_NEMS_UTILS.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:14:05 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR_methods.tmp.o module_MEDIATOR_methods.o -'module_MEDIATOR_methods.tmp.o' -> 'module_MEDIATOR_methods.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:14:05 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:14:05 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR_SpaceWeather.tmp.o module_MEDIATOR_SpaceWeather.o -'module_MEDIATOR_SpaceWeather.tmp.o' -> 'module_MEDIATOR_SpaceWeather.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:14:05 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_EARTH_INTERNAL_STATE.tmp.o module_EARTH_INTERNAL_STATE.o -'module_EARTH_INTERNAL_STATE.tmp.o' -> 'module_EARTH_INTERNAL_STATE.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:14:05 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_EARTH_GRID_COMP.tmp.o module_EARTH_GRID_COMP.o -'module_EARTH_GRID_COMP.tmp.o' -> 'module_EARTH_GRID_COMP.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:14:05 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_NEMS_INTERNAL_STATE.tmp.o module_NEMS_INTERNAL_STATE.o -'module_NEMS_INTERNAL_STATE.tmp.o' -> 'module_NEMS_INTERNAL_STATE.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:14:05 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_NEMS_GRID_COMP.tmp.o module_NEMS_GRID_COMP.o -'module_NEMS_GRID_COMP.tmp.o' -> 'module_NEMS_GRID_COMP.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:14:05 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_NEMS_Rusage.tmp.o module_NEMS_Rusage.o -'module_NEMS_Rusage.tmp.o' -> 'module_NEMS_Rusage.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:14:05 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v MAIN_NEMS.tmp.o MAIN_NEMS.o -'MAIN_NEMS.tmp.o' -> 'MAIN_NEMS.o' -echo libgocart is -libgocart is -echo extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=gfortran -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libstochastic_physics.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/fv3_1.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/fv3_1.exe -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_1 BUILD_ENV=cheyenne.gnu FV3_MAKEOPT= NEMS_BUILDOPT= clean -Will copy modules.nems and NEMS.x as fv3_1 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ - exec gmake -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -+ elapsed=244 -+ echo 'Elapsed time 244 seconds. Compiling finished' -Elapsed time 244 seconds. Compiling finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.gnu -+ BUILD_TARGET=cheyenne.gnu -+ readonly 'MAKE_OPT=32BIT=Y DEBUG=Y' -+ MAKE_OPT='32BIT=Y DEBUG=Y' -+ readonly BUILD_NAME=fv3_2 -+ BUILD_NAME=fv3_2 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -cheyenne1 -+ echo 'Compiling 32BIT=Y DEBUG=Y into fv3_2.exe on cheyenne.gnu' -Compiling 32BIT=Y DEBUG=Y into fv3_2.exe on cheyenne.gnu -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake -+ [[ cheyenne.gnu == cheyenne.* ]] -+ MAKE_THREADS=3 -+ MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ 32BIT=Y DEBUG=Y == *\C\C\P\P\=\Y* ]] -+ [[ 32BIT=Y DEBUG=Y == *\W\W\3\=\Y* ]] -+ [[ 32BIT=Y DEBUG=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ 32BIT=Y DEBUG=Y == *\R\E\P\R\O\=\Y* ]] -+ [[ 32BIT=Y DEBUG=Y == *\D\E\B\U\G\=\Y* ]] -+ NEMS_BUILDOPT=DEBUG=Y -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_2 BUILD_ENV=cheyenne.gnu 'FV3_MAKEOPT=32BIT=Y DEBUG=Y' NEMS_BUILDOPT=DEBUG=Y distclean -Will copy modules.nems and NEMS.x as fv3_2 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ - exec gmake 32BIT=Y DEBUG=Y -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_2 BUILD_ENV=cheyenne.gnu 'FV3_MAKEOPT=32BIT=Y DEBUG=Y' NEMS_BUILDOPT=DEBUG=Y build -Will copy modules.nems and NEMS.x as fv3_2 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/modulefiles/cheyenne.gnu/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/modules.fv3_2" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/modules.fv3_2 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/conf/configure.fv3.cheyenne.gnu /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ -exec gmake 32BIT=Y DEBUG=Y all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - + #define MPP_TYPE_CREATE_ mpp_type_create_int4 +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1391:0: -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -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 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O0 -g -fopenmp -c ../memutils/memuse.c -o ../memutils/memuse.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O0 -g -fopenmp -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O0 -g -fopenmp -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O0 -g -fopenmp -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O0 -g -fopenmp -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O0 -g -fopenmp -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O0 -g -fopenmp -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O0 -g -fopenmp -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O0 -g -fopenmp -c ../mpp/threadloc.c -o ../mpp/threadloc.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_domains.F90 -o ../mpp/mpp_domains.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_grid.F90 -o ../diag_manager/diag_grid.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../sat_vapor_pres/sat_vapor_pres.F90 -o ../sat_vapor_pres/sat_vapor_pres.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_axis.F90 -o ../diag_manager/diag_axis.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/xbt_drop_rate_adjust.f90 -o ../oda_tools/xbt_drop_rate_adjust.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_output.F90 -o ../diag_manager/diag_output.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp_external.F90 -o ../time_interp/time_interp_external.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_util.F90 -o ../diag_manager/diag_util.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manager.F90 -o ../diag_manager/diag_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Compiling 32BIT=Y DEBUG=Y into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=Y DEBUG=Y nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - + #define MPP_TYPE_ integer(LONG_KIND) +Warning: "MPP_TYPE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1386:0: -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_cplfields.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -physics/ugwp_driver_v0.f:1995:72: - - & del(i,:), Sw, Sw1) - 1 -Warning: Type mismatch in argument ‘km’ at (1); passed INTEGER(4) to REAL(8) [-Wargument-mismatch] -physics/ugwp_driver_v0.f:2007:72: - - call diff_1d_ptend(levs, dtstab, Fw, Kpt, del(i,:), Sw) - 1 -Warning: Missing actual argument for argument ‘s’ at (1) -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -a - physics/co2hc.o -a - physics/date_def.o -a - physics/dcyc2.o -a - physics/dcyc2.pre.rad.o -a - physics/efield.o -a - physics/get_prs.o -a - physics/gocart_tracer_config_stub.o -a - physics/gscond.o -a - physics/gscondp.o -a - physics/gwdc.o -a - physics/gwdps.o -a - physics/ugwp_driver_v0.o -a - physics/cires_orowam2017.o -a - physics/h2o_def.o -a - physics/h2oc.o -a - physics/h2ohdc.o -a - physics/h2ophys.o -a - physics/ideaca.o -a - physics/idea_co2.o -a - physics/idea_composition.o -a - physics/idea_dissipation.o -a - physics/idea_h2o.o -a - physics/idea_ion.o -a - physics/idea_o2_o3.o -a - physics/idea_phys.o -a - physics/idea_solar_heating.o -a - physics/idea_tracer.o -a - physics/iounitdef.o -a - physics/lrgsclr.o -a - physics/mersenne_twister.o -a - physics/mfpbl.o -a - physics/mfpblt.o -a - physics/mfpbltq.o -a - physics/mfscu.o -a - physics/mfscuq.o -a - physics/module_bfmicrophysics.o -a - physics/moninedmf.o -a - physics/moninedmf_hafs.o -a - physics/moninp.o -a - physics/moninp1.o -a - physics/moninq.o -a - physics/moninq1.o -a - physics/moninshoc.o -a - physics/mstadb.o -a - physics/mstadbtn.o -a - physics/mstadbtn2.o -a - physics/mstcnv.o -a - physics/namelist_soilveg.o -a - physics/ozne_def.o -a - physics/iccn_def.o -a - physics/aerclm_def.o -a - physics/ozphys.o -a - physics/ozphys_2015.o -a - physics/physparam.o -a - physics/precpd.o -a - physics/precpd_shoc.o -a - physics/precpdp.o -a - physics/progt2.o -a - physics/progtm_module.o -a - physics/rad_initialize.o -a - physics/radiation_aerosols.o -a - physics/radiation_astronomy.o -a - physics/radiation_clouds.o -a - physics/radiation_gases.o -a - physics/radiation_surface.o -a - physics/radlw_datatb.o -a - physics/radlw_main.o -a - physics/radlw_param.o -a - physics/radsw_datatb.o -a - physics/radsw_main.o -a - physics/radsw_param.o -a - physics/rascnvv2.o -a - physics/rayleigh_damp.o -a - physics/rayleigh_damp_mesopause.o -a - physics/samfaerosols.o -a - physics/samfdeepcnv.o -a - physics/samfshalcnv.o -a - physics/sascnv.o -a - physics/sascnvn.o -a - physics/satmedmfvdif.o -a - physics/satmedmfvdifq.o -a - physics/set_soilveg.o -a - physics/sfc_cice.o -a - physics/sfc_diag.o -a - physics/sfc_diff.o -a - physics/sfc_drv.o -a - physics/sfc_noahmp_drv.o -a - physics/sfc_nst.o -a - physics/sfc_ocean.o -a - physics/sfc_sice.o -a - physics/sflx.o -a - physics/shalcnv.o -a - physics/shalcv.o -a - physics/shalcv_1lyr.o -a - physics/shalcv_fixdp.o -a - physics/shalcv_opr.o -a - physics/tracer_const_h.o -a - physics/tridi2t3.o -a - physics/calpreciptype.o -a - physics/funcphys.o -a - physics/gcm_shoc.o -a - physics/get_prs_fv3.o -a - physics/h2ointerp.o -a - physics/module_nst_model.o -a - physics/module_nst_parameters.o -a - physics/module_nst_water_prop.o -a - physics/ozinterp.o -a - physics/module_wrf_utl.o -a - physics/noahmp_tables.o -a - physics/module_sf_noahmplsm.o -a - physics/module_sf_noahmp_glacier.o -a - physics/iccninterp.o -a - physics/aerinterp.o -a - physics/wam_f107_kp_mod.o -a - physics/aer_cloud.o -a - physics/cldmacro.o -a - physics/cldwat2m_micro.o -a - physics/gfs_phy_tracer_config.o -a - physics/machine.o -a - physics/num_parthds.o -a - physics/sfcsub.o -a - physics/wv_saturation.o -a - physics/GFDL_parse_tracers.o -a - physics/gcycle.o -a - physics/cires_ugwp_initialize.o -a - physics/cires_ugwp_module.o -a - physics/cires_ugwp_utils.o -a - physics/cires_ugwp_triggers.o -a - physics/cires_ugwp_solvers.o -a - physics/cires_vert_lsatdis.o -a - physics/cires_vert_orodis.o -a - physics/cires_vert_wmsdis.o -a - physics/gfdl_cloud_microphys.o -a - physics/micro_mg_utils.o -a - physics/micro_mg2_0.o -a - physics/micro_mg3_0.o -a - physics/m_micro_driver.o -a - physics/cs_conv.o -a - physics/GFS_debug.o -a - physics/module_mp_radar.o -a - physics/module_mp_thompson_gfs.o -a - physics/module_mp_wsm6_fv3.o -a - physics/physcons.o -a - physics/surface_perturbation.o -a - GFS_layer/GFS_abstraction_layer.o -a - GFS_layer/GFS_diagnostics.o -a - GFS_layer/GFS_driver.o -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c FV3GFS_io.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_write_internal_state.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c post_gfs_stub.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -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_cmp.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_cmp.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_fv3_config.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c time_utils.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c atmos_model.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_fcst_grid_comp.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 -a - module_fv3_config.o -a - module_fcst_grid_comp.o -a - time_utils.o -a - fv3_cap.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; \ -gmake nems DEBUG=Y \ - COMPONENTS="FMS FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - + #define MPP_TYPE_ integer(INT_KIND) +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1392:0: -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:19:04 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_NEMS_UTILS.tmp.o module_NEMS_UTILS.o -'module_NEMS_UTILS.tmp.o' -> 'module_NEMS_UTILS.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:19:04 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR_methods.tmp.o module_MEDIATOR_methods.o -'module_MEDIATOR_methods.tmp.o' -> 'module_MEDIATOR_methods.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:19:04 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:19:04 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR_SpaceWeather.tmp.o module_MEDIATOR_SpaceWeather.o -'module_MEDIATOR_SpaceWeather.tmp.o' -> 'module_MEDIATOR_SpaceWeather.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:19:04 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_EARTH_INTERNAL_STATE.tmp.o module_EARTH_INTERNAL_STATE.o -'module_EARTH_INTERNAL_STATE.tmp.o' -> 'module_EARTH_INTERNAL_STATE.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:19:04 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_EARTH_GRID_COMP.tmp.o module_EARTH_GRID_COMP.o -'module_EARTH_GRID_COMP.tmp.o' -> 'module_EARTH_GRID_COMP.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:19:04 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_NEMS_INTERNAL_STATE.tmp.o module_NEMS_INTERNAL_STATE.o -'module_NEMS_INTERNAL_STATE.tmp.o' -> 'module_NEMS_INTERNAL_STATE.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:19:04 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_NEMS_GRID_COMP.tmp.o module_NEMS_GRID_COMP.o -'module_NEMS_GRID_COMP.tmp.o' -> 'module_NEMS_GRID_COMP.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:19:04 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_NEMS_Rusage.tmp.o module_NEMS_Rusage.o -'module_NEMS_Rusage.tmp.o' -> 'module_NEMS_Rusage.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:19:04 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v MAIN_NEMS.tmp.o MAIN_NEMS.o -'MAIN_NEMS.tmp.o' -> 'MAIN_NEMS.o' -echo libgocart is -libgocart is -echo extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=gfortran -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libstochastic_physics.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/fv3_2.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/fv3_2.exe -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_2 BUILD_ENV=cheyenne.gnu 'FV3_MAKEOPT=32BIT=Y DEBUG=Y' NEMS_BUILDOPT=DEBUG=Y clean -Will copy modules.nems and NEMS.x as fv3_2 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ - exec gmake 32BIT=Y DEBUG=Y -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -+ elapsed=152 -+ echo 'Elapsed time 152 seconds. Compiling 32BIT=Y DEBUG=Y finished' -Elapsed time 152 seconds. Compiling 32BIT=Y DEBUG=Y finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.gnu -+ BUILD_TARGET=cheyenne.gnu -+ readonly MAKE_OPT=32BIT=Y -+ MAKE_OPT=32BIT=Y -+ readonly BUILD_NAME=fv3_3 -+ BUILD_NAME=fv3_3 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -cheyenne1 -+ echo 'Compiling 32BIT=Y into fv3_3.exe on cheyenne.gnu' -Compiling 32BIT=Y into fv3_3.exe on cheyenne.gnu -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake -+ [[ cheyenne.gnu == cheyenne.* ]] -+ MAKE_THREADS=3 -+ MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ [[ 32BIT=Y == *\W\W\3\=\Y* ]] -+ [[ 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ NEMS_BUILDOPT= -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_3 BUILD_ENV=cheyenne.gnu FV3_MAKEOPT=32BIT=Y NEMS_BUILDOPT= distclean -Will copy modules.nems and NEMS.x as fv3_3 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ - exec gmake 32BIT=Y -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_3 BUILD_ENV=cheyenne.gnu FV3_MAKEOPT=32BIT=Y NEMS_BUILDOPT= build -Will copy modules.nems and NEMS.x as fv3_3 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/modulefiles/cheyenne.gnu/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/modules.fv3_3" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/modules.fv3_3 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/conf/configure.fv3.cheyenne.gnu /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ -exec gmake 32BIT=Y all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - + #define MPI_TYPE_ MPI_INTEGER8 +Warning: "MPI_TYPE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1387:0: -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -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 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../memutils/memuse.c -o ../memutils/memuse.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mpp/threadloc.c -o ../mpp/threadloc.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_domains.F90 -o ../mpp/mpp_domains.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_grid.F90 -o ../diag_manager/diag_grid.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../sat_vapor_pres/sat_vapor_pres.F90 -o ../sat_vapor_pres/sat_vapor_pres.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_axis.F90 -o ../diag_manager/diag_axis.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/xbt_drop_rate_adjust.f90 -o ../oda_tools/xbt_drop_rate_adjust.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_output.F90 -o ../diag_manager/diag_output.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp_external.F90 -o ../time_interp/time_interp_external.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_util.F90 -o ../diag_manager/diag_util.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manager.F90 -o ../diag_manager/diag_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Compiling 32BIT=Y into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=Y nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - + #define MPI_TYPE_ MPI_INTEGER4 +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1395:0: -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_cplfields.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -physics/ugwp_driver_v0.f:1995:72: - - & del(i,:), Sw, Sw1) - 1 -Warning: Type mismatch in argument ‘km’ at (1); passed INTEGER(4) to REAL(8) [-Wargument-mismatch] -physics/ugwp_driver_v0.f:2007:72: + #define MPP_TYPE_CREATE_ mpp_type_create_real4 + +Warning: "MPP_TYPE_CREATE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1390:0: - call diff_1d_ptend(levs, dtstab, Fw, Kpt, del(i,:), Sw) - 1 -Warning: Missing actual argument for argument ‘s’ at (1) -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -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 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -a - physics/co2hc.o -a - physics/date_def.o -a - physics/dcyc2.o -a - physics/dcyc2.pre.rad.o -a - physics/efield.o -a - physics/get_prs.o -a - physics/gocart_tracer_config_stub.o -a - physics/gscond.o -a - physics/gscondp.o -a - physics/gwdc.o -a - physics/gwdps.o -a - physics/ugwp_driver_v0.o -a - physics/cires_orowam2017.o -a - physics/h2o_def.o -a - physics/h2oc.o -a - physics/h2ohdc.o -a - physics/h2ophys.o -a - physics/ideaca.o -a - physics/idea_co2.o -a - physics/idea_composition.o -a - physics/idea_dissipation.o -a - physics/idea_h2o.o -a - physics/idea_ion.o -a - physics/idea_o2_o3.o -a - physics/idea_phys.o -a - physics/idea_solar_heating.o -a - physics/idea_tracer.o -a - physics/iounitdef.o -a - physics/lrgsclr.o -a - physics/mersenne_twister.o -a - physics/mfpbl.o -a - physics/mfpblt.o -a - physics/mfpbltq.o -a - physics/mfscu.o -a - physics/mfscuq.o -a - physics/module_bfmicrophysics.o -a - physics/moninedmf.o -a - physics/moninedmf_hafs.o -a - physics/moninp.o -a - physics/moninp1.o -a - physics/moninq.o -a - physics/moninq1.o -a - physics/moninshoc.o -a - physics/mstadb.o -a - physics/mstadbtn.o -a - physics/mstadbtn2.o -a - physics/mstcnv.o -a - physics/namelist_soilveg.o -a - physics/ozne_def.o -a - physics/iccn_def.o -a - physics/aerclm_def.o -a - physics/ozphys.o -a - physics/ozphys_2015.o -a - physics/physparam.o -a - physics/precpd.o -a - physics/precpd_shoc.o -a - physics/precpdp.o -a - physics/progt2.o -a - physics/progtm_module.o -a - physics/rad_initialize.o -a - physics/radiation_aerosols.o -a - physics/radiation_astronomy.o -a - physics/radiation_clouds.o -a - physics/radiation_gases.o -a - physics/radiation_surface.o -a - physics/radlw_datatb.o -a - physics/radlw_main.o -a - physics/radlw_param.o -a - physics/radsw_datatb.o -a - physics/radsw_main.o -a - physics/radsw_param.o -a - physics/rascnvv2.o -a - physics/rayleigh_damp.o -a - physics/rayleigh_damp_mesopause.o -a - physics/samfaerosols.o -a - physics/samfdeepcnv.o -a - physics/samfshalcnv.o -a - physics/sascnv.o -a - physics/sascnvn.o -a - physics/satmedmfvdif.o -a - physics/satmedmfvdifq.o -a - physics/set_soilveg.o -a - physics/sfc_cice.o -a - physics/sfc_diag.o -a - physics/sfc_diff.o -a - physics/sfc_drv.o -a - physics/sfc_noahmp_drv.o -a - physics/sfc_nst.o -a - physics/sfc_ocean.o -a - physics/sfc_sice.o -a - physics/sflx.o -a - physics/shalcnv.o -a - physics/shalcv.o -a - physics/shalcv_1lyr.o -a - physics/shalcv_fixdp.o -a - physics/shalcv_opr.o -a - physics/tracer_const_h.o -a - physics/tridi2t3.o -a - physics/calpreciptype.o -a - physics/funcphys.o -a - physics/gcm_shoc.o -a - physics/get_prs_fv3.o -a - physics/h2ointerp.o -a - physics/module_nst_model.o -a - physics/module_nst_parameters.o -a - physics/module_nst_water_prop.o -a - physics/ozinterp.o -a - physics/module_wrf_utl.o -a - physics/noahmp_tables.o -a - physics/module_sf_noahmplsm.o -a - physics/module_sf_noahmp_glacier.o -a - physics/iccninterp.o -a - physics/aerinterp.o -a - physics/wam_f107_kp_mod.o -a - physics/aer_cloud.o -a - physics/cldmacro.o -a - physics/cldwat2m_micro.o -a - physics/gfs_phy_tracer_config.o -a - physics/machine.o -a - physics/num_parthds.o -a - physics/sfcsub.o -a - physics/wv_saturation.o -a - physics/GFDL_parse_tracers.o -a - physics/gcycle.o -a - physics/cires_ugwp_initialize.o -a - physics/cires_ugwp_module.o -a - physics/cires_ugwp_utils.o -a - physics/cires_ugwp_triggers.o -a - physics/cires_ugwp_solvers.o -a - physics/cires_vert_lsatdis.o -a - physics/cires_vert_orodis.o -a - physics/cires_vert_wmsdis.o -a - physics/gfdl_cloud_microphys.o -a - physics/micro_mg_utils.o -a - physics/micro_mg2_0.o -a - physics/micro_mg3_0.o -a - physics/m_micro_driver.o -a - physics/cs_conv.o -a - physics/GFS_debug.o -a - physics/module_mp_radar.o -a - physics/module_mp_thompson_gfs.o -a - physics/module_mp_wsm6_fv3.o -a - physics/physcons.o -a - physics/surface_perturbation.o -a - GFS_layer/GFS_abstraction_layer.o -a - GFS_layer/GFS_diagnostics.o -a - GFS_layer/GFS_driver.o -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c FV3GFS_io.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_write_internal_state.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c post_gfs_stub.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -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_cmp.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_cmp.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_fv3_config.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c time_utils.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c atmos_model.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_fcst_grid_comp.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 -a - module_fv3_config.o -a - module_fcst_grid_comp.o -a - time_utils.o -a - fv3_cap.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; \ -gmake nems \ - COMPONENTS="FMS FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x + #define MPP_TYPE_CREATE_ mpp_type_create_int8 + +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1396:0: -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems + #define MPP_TYPE_ real(FLOAT_KIND) + +Warning: "MPP_TYPE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1391:0: + #define MPP_TYPE_ integer(LONG_KIND) +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1397:0: -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:25:32 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_NEMS_UTILS.tmp.o module_NEMS_UTILS.o -'module_NEMS_UTILS.tmp.o' -> 'module_NEMS_UTILS.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:25:32 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR_methods.tmp.o module_MEDIATOR_methods.o -'module_MEDIATOR_methods.tmp.o' -> 'module_MEDIATOR_methods.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:25:32 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:25:32 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR_SpaceWeather.tmp.o module_MEDIATOR_SpaceWeather.o -'module_MEDIATOR_SpaceWeather.tmp.o' -> 'module_MEDIATOR_SpaceWeather.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:25:32 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_EARTH_INTERNAL_STATE.tmp.o module_EARTH_INTERNAL_STATE.o -'module_EARTH_INTERNAL_STATE.tmp.o' -> 'module_EARTH_INTERNAL_STATE.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:25:32 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_EARTH_GRID_COMP.tmp.o module_EARTH_GRID_COMP.o -'module_EARTH_GRID_COMP.tmp.o' -> 'module_EARTH_GRID_COMP.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:25:32 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_NEMS_INTERNAL_STATE.tmp.o module_NEMS_INTERNAL_STATE.o -'module_NEMS_INTERNAL_STATE.tmp.o' -> 'module_NEMS_INTERNAL_STATE.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:25:32 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_NEMS_GRID_COMP.tmp.o module_NEMS_GRID_COMP.o -'module_NEMS_GRID_COMP.tmp.o' -> 'module_NEMS_GRID_COMP.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:25:32 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_NEMS_Rusage.tmp.o module_NEMS_Rusage.o -'module_NEMS_Rusage.tmp.o' -> 'module_NEMS_Rusage.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:25:32 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v MAIN_NEMS.tmp.o MAIN_NEMS.o -'MAIN_NEMS.tmp.o' -> 'MAIN_NEMS.o' -echo libgocart is -libgocart is -echo extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=gfortran -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libstochastic_physics.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/fv3_3.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/fv3_3.exe -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_3 BUILD_ENV=cheyenne.gnu FV3_MAKEOPT=32BIT=Y NEMS_BUILDOPT= clean -Will copy modules.nems and NEMS.x as fv3_3 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ - exec gmake 32BIT=Y -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -+ elapsed=252 -+ echo 'Elapsed time 252 seconds. Compiling 32BIT=Y finished' -Elapsed time 252 seconds. Compiling 32BIT=Y finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.gnu -+ BUILD_TARGET=cheyenne.gnu -+ readonly MAKE_OPT=REPRO=Y -+ MAKE_OPT=REPRO=Y -+ readonly BUILD_NAME=fv3_4 -+ BUILD_NAME=fv3_4 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -cheyenne1 -+ echo 'Compiling REPRO=Y into fv3_4.exe on cheyenne.gnu' -Compiling REPRO=Y into fv3_4.exe on cheyenne.gnu -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake -+ [[ cheyenne.gnu == cheyenne.* ]] -+ MAKE_THREADS=3 -+ MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ REPRO=Y == *\C\C\P\P\=\Y* ]] -+ [[ REPRO=Y == *\W\W\3\=\Y* ]] -+ [[ REPRO=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y == *\R\E\P\R\O\=\Y* ]] -+ NEMS_BUILDOPT=REPRO=Y -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_4 BUILD_ENV=cheyenne.gnu FV3_MAKEOPT=REPRO=Y NEMS_BUILDOPT=REPRO=Y distclean -Will copy modules.nems and NEMS.x as fv3_4 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ - exec gmake REPRO=Y -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -Cleaning fms ... + #define MPI_TYPE_ MPI_REAL4 + +Warning: "MPI_TYPE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1392:0: -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_4 BUILD_ENV=cheyenne.gnu FV3_MAKEOPT=REPRO=Y NEMS_BUILDOPT=REPRO=Y build -Will copy modules.nems and NEMS.x as fv3_4 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/modulefiles/cheyenne.gnu/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/modules.fv3_4" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/modules.fv3_4 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/conf/configure.fv3.cheyenne.gnu /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ -exec gmake REPRO=Y all + #define MPI_TYPE_ MPI_INTEGER8 + +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1400:0: -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems + #define MPP_TYPE_CREATE_ mpp_type_create_real8 + +Warning: "MPP_TYPE_CREATE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1395:0: + #define MPP_TYPE_CREATE_ mpp_type_create_real4 +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1401:0: -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -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 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../memutils/memuse.c -o ../memutils/memuse.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mpp/threadloc.c -o ../mpp/threadloc.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_domains.F90 -o ../mpp/mpp_domains.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_grid.F90 -o ../diag_manager/diag_grid.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../sat_vapor_pres/sat_vapor_pres.F90 -o ../sat_vapor_pres/sat_vapor_pres.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_axis.F90 -o ../diag_manager/diag_axis.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/xbt_drop_rate_adjust.f90 -o ../oda_tools/xbt_drop_rate_adjust.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_output.F90 -o ../diag_manager/diag_output.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp_external.F90 -o ../time_interp/time_interp_external.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_util.F90 -o ../diag_manager/diag_util.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manager.F90 -o ../diag_manager/diag_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Compiling REPRO=Y into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL REPRO=Y nemsinstall + #define MPP_TYPE_ real(DOUBLE_KIND) + +Warning: "MPP_TYPE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1396:0: -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems + #define MPP_TYPE_ real(FLOAT_KIND) + +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1402:0: + #define MPI_TYPE_ MPI_REAL8 +Warning: "MPI_TYPE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1397:0: -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_cplfields.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -physics/ugwp_driver_v0.f:1995:72: - - & del(i,:), Sw, Sw1) - 1 -Warning: Type mismatch in argument ‘km’ at (1); passed INTEGER(4) to REAL(8) [-Wargument-mismatch] -physics/ugwp_driver_v0.f:2007:72: + #define MPI_TYPE_ MPI_REAL4 + +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1405:0: - call diff_1d_ptend(levs, dtstab, Fw, Kpt, del(i,:), Sw) - 1 -Warning: Missing actual argument for argument ‘s’ at (1) -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_radiation_driver.F90 > GFS_layer/GFS_radiation_driver.tmp.f90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_physics_driver.F90 > GFS_layer/GFS_physics_driver.tmp.f90 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -a - physics/co2hc.o -a - physics/date_def.o -a - physics/dcyc2.o -a - physics/dcyc2.pre.rad.o -a - physics/efield.o -a - physics/get_prs.o -a - physics/gocart_tracer_config_stub.o -a - physics/gscond.o -a - physics/gscondp.o -a - physics/gwdc.o -a - physics/gwdps.o -a - physics/ugwp_driver_v0.o -a - physics/cires_orowam2017.o -a - physics/h2o_def.o -a - physics/h2oc.o -a - physics/h2ohdc.o -a - physics/h2ophys.o -a - physics/ideaca.o -a - physics/idea_co2.o -a - physics/idea_composition.o -a - physics/idea_dissipation.o -a - physics/idea_h2o.o -a - physics/idea_ion.o -a - physics/idea_o2_o3.o -a - physics/idea_phys.o -a - physics/idea_solar_heating.o -a - physics/idea_tracer.o -a - physics/iounitdef.o -a - physics/lrgsclr.o -a - physics/mersenne_twister.o -a - physics/mfpbl.o -a - physics/mfpblt.o -a - physics/mfpbltq.o -a - physics/mfscu.o -a - physics/mfscuq.o -a - physics/module_bfmicrophysics.o -a - physics/moninedmf.o -a - physics/moninedmf_hafs.o -a - physics/moninp.o -a - physics/moninp1.o -a - physics/moninq.o -a - physics/moninq1.o -a - physics/moninshoc.o -a - physics/mstadb.o -a - physics/mstadbtn.o -a - physics/mstadbtn2.o -a - physics/mstcnv.o -a - physics/namelist_soilveg.o -a - physics/ozne_def.o -a - physics/iccn_def.o -a - physics/aerclm_def.o -a - physics/ozphys.o -a - physics/ozphys_2015.o -a - physics/physparam.o -a - physics/precpd.o -a - physics/precpd_shoc.o -a - physics/precpdp.o -a - physics/progt2.o -a - physics/progtm_module.o -a - physics/rad_initialize.o -a - physics/radiation_aerosols.o -a - physics/radiation_astronomy.o -a - physics/radiation_clouds.o -a - physics/radiation_gases.o -a - physics/radiation_surface.o -a - physics/radlw_datatb.o -a - physics/radlw_main.o -a - physics/radlw_param.o -a - physics/radsw_datatb.o -a - physics/radsw_main.o -a - physics/radsw_param.o -a - physics/rascnvv2.o -a - physics/rayleigh_damp.o -a - physics/rayleigh_damp_mesopause.o -a - physics/samfaerosols.o -a - physics/samfdeepcnv.o -a - physics/samfshalcnv.o -a - physics/sascnv.o -a - physics/sascnvn.o -a - physics/satmedmfvdif.o -a - physics/satmedmfvdifq.o -a - physics/set_soilveg.o -a - physics/sfc_cice.o -a - physics/sfc_diag.o -a - physics/sfc_diff.o -a - physics/sfc_drv.o -a - physics/sfc_noahmp_drv.o -a - physics/sfc_nst.o -a - physics/sfc_ocean.o -a - physics/sfc_sice.o -a - physics/sflx.o -a - physics/shalcnv.o -a - physics/shalcv.o -a - physics/shalcv_1lyr.o -a - physics/shalcv_fixdp.o -a - physics/shalcv_opr.o -a - physics/tracer_const_h.o -a - physics/tridi2t3.o -a - physics/calpreciptype.o -a - physics/funcphys.o -a - physics/gcm_shoc.o -a - physics/get_prs_fv3.o -a - physics/h2ointerp.o -a - physics/module_nst_model.o -a - physics/module_nst_parameters.o -a - physics/module_nst_water_prop.o -a - physics/ozinterp.o -a - physics/module_wrf_utl.o -a - physics/noahmp_tables.o -a - physics/module_sf_noahmplsm.o -a - physics/module_sf_noahmp_glacier.o -a - physics/iccninterp.o -a - physics/aerinterp.o -a - physics/wam_f107_kp_mod.o -a - physics/aer_cloud.o -a - physics/cldmacro.o -a - physics/cldwat2m_micro.o -a - physics/gfs_phy_tracer_config.o -a - physics/machine.o -a - physics/num_parthds.o -a - physics/sfcsub.o -a - physics/wv_saturation.o -a - physics/GFDL_parse_tracers.o -a - physics/gcycle.o -a - physics/cires_ugwp_initialize.o -a - physics/cires_ugwp_module.o -a - physics/cires_ugwp_utils.o -a - physics/cires_ugwp_triggers.o -a - physics/cires_ugwp_solvers.o -a - physics/cires_vert_lsatdis.o -a - physics/cires_vert_orodis.o -a - physics/cires_vert_wmsdis.o -a - physics/gfdl_cloud_microphys.o -a - physics/micro_mg_utils.o -a - physics/micro_mg2_0.o -a - physics/micro_mg3_0.o -a - physics/m_micro_driver.o -a - physics/cs_conv.o -a - physics/GFS_debug.o -a - physics/module_mp_radar.o -a - physics/module_mp_thompson_gfs.o -a - physics/module_mp_wsm6_fv3.o -a - physics/physcons.o -a - physics/surface_perturbation.o -a - GFS_layer/GFS_abstraction_layer.o -a - GFS_layer/GFS_diagnostics.o -a - GFS_layer/GFS_driver.o -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c FV3GFS_io.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_write_internal_state.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c post_gfs_stub.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -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_cmp.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_cmp.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_fv3_config.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c time_utils.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c atmos_model.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_fcst_grid_comp.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 -a - module_fv3_config.o -a - module_fcst_grid_comp.o -a - time_utils.o -a - fv3_cap.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; \ -gmake nems REPRO=Y \ - COMPONENTS="FMS FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x + #define MPP_TYPE_CREATE_ mpp_type_create_logical4 + +Warning: "MPP_TYPE_CREATE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1400:0: -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems + #define MPP_TYPE_CREATE_ mpp_type_create_real8 + +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1406:0: + #define MPP_TYPE_ logical(INT_KIND) +Warning: "MPP_TYPE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1401:0: -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:32:56 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_NEMS_UTILS.tmp.o module_NEMS_UTILS.o -'module_NEMS_UTILS.tmp.o' -> 'module_NEMS_UTILS.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:32:56 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR_methods.tmp.o module_MEDIATOR_methods.o -'module_MEDIATOR_methods.tmp.o' -> 'module_MEDIATOR_methods.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:32:56 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:32:56 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR_SpaceWeather.tmp.o module_MEDIATOR_SpaceWeather.o -'module_MEDIATOR_SpaceWeather.tmp.o' -> 'module_MEDIATOR_SpaceWeather.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:32:56 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_EARTH_INTERNAL_STATE.tmp.o module_EARTH_INTERNAL_STATE.o -'module_EARTH_INTERNAL_STATE.tmp.o' -> 'module_EARTH_INTERNAL_STATE.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:32:56 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_EARTH_GRID_COMP.tmp.o module_EARTH_GRID_COMP.o -'module_EARTH_GRID_COMP.tmp.o' -> 'module_EARTH_GRID_COMP.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:32:56 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_NEMS_INTERNAL_STATE.tmp.o module_NEMS_INTERNAL_STATE.o -'module_NEMS_INTERNAL_STATE.tmp.o' -> 'module_NEMS_INTERNAL_STATE.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:32:56 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_NEMS_GRID_COMP.tmp.o module_NEMS_GRID_COMP.o -'module_NEMS_GRID_COMP.tmp.o' -> 'module_NEMS_GRID_COMP.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:32:56 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_NEMS_Rusage.tmp.o module_NEMS_Rusage.o -'module_NEMS_Rusage.tmp.o' -> 'module_NEMS_Rusage.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:32:56 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v MAIN_NEMS.tmp.o MAIN_NEMS.o -'MAIN_NEMS.tmp.o' -> 'MAIN_NEMS.o' -echo libgocart is -libgocart is -echo extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=gfortran -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libstochastic_physics.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/fv3_4.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/fv3_4.exe -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_4 BUILD_ENV=cheyenne.gnu FV3_MAKEOPT=REPRO=Y NEMS_BUILDOPT=REPRO=Y clean -Will copy modules.nems and NEMS.x as fv3_4 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ - exec gmake REPRO=Y -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -+ elapsed=305 -+ echo 'Elapsed time 305 seconds. Compiling REPRO=Y finished' -Elapsed time 305 seconds. Compiling REPRO=Y finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.gnu -+ BUILD_TARGET=cheyenne.gnu -+ readonly 'MAKE_OPT=REPRO=Y 32BIT=Y' -+ MAKE_OPT='REPRO=Y 32BIT=Y' -+ readonly BUILD_NAME=fv3_5 -+ BUILD_NAME=fv3_5 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -cheyenne1 -+ echo 'Compiling REPRO=Y 32BIT=Y into fv3_5.exe on cheyenne.gnu' -Compiling REPRO=Y 32BIT=Y into fv3_5.exe on cheyenne.gnu -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake -+ [[ cheyenne.gnu == cheyenne.* ]] -+ MAKE_THREADS=3 -+ MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ REPRO=Y 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ [[ REPRO=Y 32BIT=Y == *\W\W\3\=\Y* ]] -+ [[ REPRO=Y 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ NEMS_BUILDOPT=REPRO=Y -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_5 BUILD_ENV=cheyenne.gnu 'FV3_MAKEOPT=REPRO=Y 32BIT=Y' NEMS_BUILDOPT=REPRO=Y distclean -Will copy modules.nems and NEMS.x as fv3_5 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ - exec gmake REPRO=Y 32BIT=Y -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -Cleaning fms ... + #define MPP_TYPE_ real(DOUBLE_KIND) + +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1407:0: -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_5 BUILD_ENV=cheyenne.gnu 'FV3_MAKEOPT=REPRO=Y 32BIT=Y' NEMS_BUILDOPT=REPRO=Y build -Will copy modules.nems and NEMS.x as fv3_5 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/modulefiles/cheyenne.gnu/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/modules.fv3_5" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/modules.fv3_5 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/conf/configure.fv3.cheyenne.gnu /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ -exec gmake REPRO=Y 32BIT=Y all + #define MPI_TYPE_ MPI_INTEGER4 + +Warning: "MPI_TYPE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1402:0: -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems + #define MPI_TYPE_ MPI_REAL8 + +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1410:0: + #define MPP_TYPE_CREATE_ mpp_type_create_logical8 +Warning: "MPP_TYPE_CREATE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1405:0: -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -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 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../memutils/memuse.c -o ../memutils/memuse.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -c ../mpp/threadloc.c -o ../mpp/threadloc.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_domains.F90 -o ../mpp/mpp_domains.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_grid.F90 -o ../diag_manager/diag_grid.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../sat_vapor_pres/sat_vapor_pres.F90 -o ../sat_vapor_pres/sat_vapor_pres.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_axis.F90 -o ../diag_manager/diag_axis.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/xbt_drop_rate_adjust.f90 -o ../oda_tools/xbt_drop_rate_adjust.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_output.F90 -o ../diag_manager/diag_output.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp_external.F90 -o ../time_interp/time_interp_external.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_util.F90 -o ../diag_manager/diag_util.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manager.F90 -o ../diag_manager/diag_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Compiling REPRO=Y 32BIT=Y into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL REPRO=Y 32BIT=Y nemsinstall + #define MPP_TYPE_CREATE_ mpp_type_create_logical4 + +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1411:0: -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems + #define MPP_TYPE_ logical(LONG_KIND) + +Warning: "MPP_TYPE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1406:0: + #define MPP_TYPE_ logical(INT_KIND) +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1412:0: -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_cplfields.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -physics/ugwp_driver_v0.f:1995:72: - - & del(i,:), Sw, Sw1) - 1 -Warning: Type mismatch in argument ‘km’ at (1); passed INTEGER(4) to REAL(8) [-Wargument-mismatch] -physics/ugwp_driver_v0.f:2007:72: + #define MPI_TYPE_ MPI_INTEGER8 + +Warning: "MPI_TYPE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1407:0: - call diff_1d_ptend(levs, dtstab, Fw, Kpt, del(i,:), Sw) - 1 -Warning: Missing actual argument for argument ‘s’ at (1) -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_radiation_driver.F90 > GFS_layer/GFS_radiation_driver.tmp.f90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_physics_driver.F90 > GFS_layer/GFS_physics_driver.tmp.f90 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -a - physics/co2hc.o -a - physics/date_def.o -a - physics/dcyc2.o -a - physics/dcyc2.pre.rad.o -a - physics/efield.o -a - physics/get_prs.o -a - physics/gocart_tracer_config_stub.o -a - physics/gscond.o -a - physics/gscondp.o -a - physics/gwdc.o -a - physics/gwdps.o -a - physics/ugwp_driver_v0.o -a - physics/cires_orowam2017.o -a - physics/h2o_def.o -a - physics/h2oc.o -a - physics/h2ohdc.o -a - physics/h2ophys.o -a - physics/ideaca.o -a - physics/idea_co2.o -a - physics/idea_composition.o -a - physics/idea_dissipation.o -a - physics/idea_h2o.o -a - physics/idea_ion.o -a - physics/idea_o2_o3.o -a - physics/idea_phys.o -a - physics/idea_solar_heating.o -a - physics/idea_tracer.o -a - physics/iounitdef.o -a - physics/lrgsclr.o -a - physics/mersenne_twister.o -a - physics/mfpbl.o -a - physics/mfpblt.o -a - physics/mfpbltq.o -a - physics/mfscu.o -a - physics/mfscuq.o -a - physics/module_bfmicrophysics.o -a - physics/moninedmf.o -a - physics/moninedmf_hafs.o -a - physics/moninp.o -a - physics/moninp1.o -a - physics/moninq.o -a - physics/moninq1.o -a - physics/moninshoc.o -a - physics/mstadb.o -a - physics/mstadbtn.o -a - physics/mstadbtn2.o -a - physics/mstcnv.o -a - physics/namelist_soilveg.o -a - physics/ozne_def.o -a - physics/iccn_def.o -a - physics/aerclm_def.o -a - physics/ozphys.o -a - physics/ozphys_2015.o -a - physics/physparam.o -a - physics/precpd.o -a - physics/precpd_shoc.o -a - physics/precpdp.o -a - physics/progt2.o -a - physics/progtm_module.o -a - physics/rad_initialize.o -a - physics/radiation_aerosols.o -a - physics/radiation_astronomy.o -a - physics/radiation_clouds.o -a - physics/radiation_gases.o -a - physics/radiation_surface.o -a - physics/radlw_datatb.o -a - physics/radlw_main.o -a - physics/radlw_param.o -a - physics/radsw_datatb.o -a - physics/radsw_main.o -a - physics/radsw_param.o -a - physics/rascnvv2.o -a - physics/rayleigh_damp.o -a - physics/rayleigh_damp_mesopause.o -a - physics/samfaerosols.o -a - physics/samfdeepcnv.o -a - physics/samfshalcnv.o -a - physics/sascnv.o -a - physics/sascnvn.o -a - physics/satmedmfvdif.o -a - physics/satmedmfvdifq.o -a - physics/set_soilveg.o -a - physics/sfc_cice.o -a - physics/sfc_diag.o -a - physics/sfc_diff.o -a - physics/sfc_drv.o -a - physics/sfc_noahmp_drv.o -a - physics/sfc_nst.o -a - physics/sfc_ocean.o -a - physics/sfc_sice.o -a - physics/sflx.o -a - physics/shalcnv.o -a - physics/shalcv.o -a - physics/shalcv_1lyr.o -a - physics/shalcv_fixdp.o -a - physics/shalcv_opr.o -a - physics/tracer_const_h.o -a - physics/tridi2t3.o -a - physics/calpreciptype.o -a - physics/funcphys.o -a - physics/gcm_shoc.o -a - physics/get_prs_fv3.o -a - physics/h2ointerp.o -a - physics/module_nst_model.o -a - physics/module_nst_parameters.o -a - physics/module_nst_water_prop.o -a - physics/ozinterp.o -a - physics/module_wrf_utl.o -a - physics/noahmp_tables.o -a - physics/module_sf_noahmplsm.o -a - physics/module_sf_noahmp_glacier.o -a - physics/iccninterp.o -a - physics/aerinterp.o -a - physics/wam_f107_kp_mod.o -a - physics/aer_cloud.o -a - physics/cldmacro.o -a - physics/cldwat2m_micro.o -a - physics/gfs_phy_tracer_config.o -a - physics/machine.o -a - physics/num_parthds.o -a - physics/sfcsub.o -a - physics/wv_saturation.o -a - physics/GFDL_parse_tracers.o -a - physics/gcycle.o -a - physics/cires_ugwp_initialize.o -a - physics/cires_ugwp_module.o -a - physics/cires_ugwp_utils.o -a - physics/cires_ugwp_triggers.o -a - physics/cires_ugwp_solvers.o -a - physics/cires_vert_lsatdis.o -a - physics/cires_vert_orodis.o -a - physics/cires_vert_wmsdis.o -a - physics/gfdl_cloud_microphys.o -a - physics/micro_mg_utils.o -a - physics/micro_mg2_0.o -a - physics/micro_mg3_0.o -a - physics/m_micro_driver.o -a - physics/cs_conv.o -a - physics/GFS_debug.o -a - physics/module_mp_radar.o -a - physics/module_mp_thompson_gfs.o -a - physics/module_mp_wsm6_fv3.o -a - physics/physcons.o -a - physics/surface_perturbation.o -a - GFS_layer/GFS_abstraction_layer.o -a - GFS_layer/GFS_diagnostics.o -a - GFS_layer/GFS_driver.o -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c FV3GFS_io.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_write_internal_state.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c post_gfs_stub.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -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_cmp.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_cmp.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_fv3_config.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c time_utils.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c atmos_model.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_fcst_grid_comp.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 -a - module_fv3_config.o -a - module_fcst_grid_comp.o -a - time_utils.o -a - fv3_cap.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; \ -gmake nems REPRO=Y \ - COMPONENTS="FMS FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x + #define MPI_TYPE_ MPI_INTEGER4 + +note: this is the location of the previous definition +[ 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 +[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o +[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o +[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o +[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o +[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o +[ 7%] 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 +[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o +[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.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 +[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o +[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o +[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o +[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o +[ 10%] 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 CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o +[ 11%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o +[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o +[ 12%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o +[ 12%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o +[ 12%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o +[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.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/set_soilveg_ruc.F90.o +[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o +[ 12%] 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 +[ 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 +[ 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 +[ 15%] 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 +[ 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/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 +[ 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 +[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o +[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o +[ 19%] 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 +[ 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/get_prs_fv3.F90.o +[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.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 +[ 25%] 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 +[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.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/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90.o +[ 26%] 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 +[ 26%] 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/GFS_time_vary_pre.fv3.F90.o +[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90.o +[ 27%] 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 +[ 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 +[ 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/dcyc2.f.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/sfc_nst.f.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_v15p2_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/physics/GFS_rrtmg_setup.F90.o +[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_stochastics_cap.F90.o +[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_physics_cap.F90.o +[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_radiation_cap.F90.o +[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_time_vary_cap.F90.o +[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_physics_cap.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 +[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_radiation_cap.F90.o +[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_time_vary_cap.F90.o +[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_cap.F90.o +[ 34%] 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/physics/GFS_suite_init_finalize_test.F90.o +[ 35%] 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/cs_conv.F90.o +[ 35%] 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_gf_driver.F90.o +[ 35%] 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 +[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o +[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o +[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o +[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o +[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o +[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o +[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o +[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o +[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o +[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o +[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o +[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o +[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o +[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o +[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o +[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o +[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o +[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o +[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o +[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o +[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o +[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o +[ 45%] 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.f.o +[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o +[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o +[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o +[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o +[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o +[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o +[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o +[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o +[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o +[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o +[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o +[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o +[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o +[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o +[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o +[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o +[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o +[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o +[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o +[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o +[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o +[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o +[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o +[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o +[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o +[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o +[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o +[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o +[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o +[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o +[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o +[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/field_manager/field_manager.F90:1196:0: + + val_name = val_name(2:length-1) + +Warning: ‘__builtin_memmove’ reading 128 bytes from a region of size 127 [-Wstringop-overflow=] +[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o +[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o +[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o +[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o +[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o +[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o +[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o +[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o +[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o +[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o +[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o +[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o +[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o +[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o +[ 55%] Linking Fortran static library libccppphys.a +[ 55%] Built target ccppphys +[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o +Scanning dependencies of target gfsphysics +[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o +[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o +[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o +[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o +[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o +[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o +[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o +[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o +[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o +[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o +[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o +[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o +[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o +[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o +[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o +[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o +[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o +[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o +[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o +[ 61%] 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 +[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o +[ 62%] 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/atmos_ocean_fluxes.F90.o +[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o +[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o +[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o +[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o +[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o +[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o +[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o +[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o +[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o +[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o +[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o +[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o +[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o +[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o +[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o +[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o +[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o +[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o +[ 67%] Linking Fortran static library libgfsphysics.a +[ 67%] Built target gfsphysics +[ 68%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o +Scanning dependencies of target ipd +[ 68%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o +[ 68%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o +[ 69%] Linking Fortran static library libipd.a +[ 69%] Built target ipd +[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o +Scanning dependencies of target ccppdriver +[ 69%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o +[ 70%] Linking Fortran static library libccppdriver.a +[ 70%] Built target ccppdriver +[ 71%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o +[ 71%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o +[ 71%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o +[ 72%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o +[ 73%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o +[ 73%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o +[ 73%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o +[ 73%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o +[ 74%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o +[ 74%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o +[ 74%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o +[ 74%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o +[ 75%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o +[ 75%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o +[ 75%] Linking Fortran static library FMS/libfms.a +[ 75%] Built target fms +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 +[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.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/io/CMakeFiles/io.dir/module_write_netcdf.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_netcdf.F90:1:29: + + !#define ESMF_ERR_ABORT(rc) \ + +Warning: backslash and newline separated by space +[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o +[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs_stub.F90.o +[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.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/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o +[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.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/sorted_index.F90.o +[ 79%] 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:1571:16: + + do k=km-1, km-k_inc, -1 + 1 +Warning: Deleted feature: End expression in DO loop at (1) must be integer +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:1575:12: + + s_fac(km-k_inc-1) = 0.5*(s_fac(km-k_inc) + s_rate) + 1 +Warning: Legacy Extension: REAL array index at (1) +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:1575:37: + + s_fac(km-k_inc-1) = 0.5*(s_fac(km-k_inc) + s_rate) + 1 +Warning: Legacy Extension: REAL array index at (1) +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:1577:11: + + do k=km-k_inc-2, 5, -1 + 1 +Warning: Deleted feature: Start expression in DO loop at (1) must be integer +[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o +[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.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/boundary.F90.o +[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.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/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 +[ 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:355:46: + + iau_state%hr2=IPD_Control%iaufhrs(t2) + 1 +Warning: Legacy Extension: REAL array index at (1) +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:357:98: + + if (is_master()) print *,'reading next increment file',trim(IPD_Control%iau_inc_files(t2)) + 1 +Warning: Legacy Extension: REAL array index at (1) +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:358:102: + + call read_iau_forcing(IPD_Control,iau_state%inc2,'INPUT/'//trim(IPD_Control%iau_inc_files(t2))) + 1 +Warning: Legacy Extension: REAL array index at (1) +[ 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 +[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o +[ 83%] 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 +[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:2361:3: + + 123 continue + 1 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:2413:40: + + if ( r_vor < 1250.E3 ) goto 123 + 2 +Warning: Legacy Extension: Label at (1) is not in the same block as the GOTO statement at (2) +[ 85%] 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/dyn_core.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/dyn_core.F90:649:0: + + #endif SW_DYNAMICS + +Warning: extra tokens at end of #endif directive +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/dyn_core.F90:1099:0: -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems + #endif SW_DYNAMICS + +Warning: extra tokens at end of #endif directive +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/dyn_core.F90:1285:0: + #endif SW_DYNAMICS +Warning: extra tokens at end of #endif directive +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/dyn_core.F90:1306:0: -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:40:41 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_NEMS_UTILS.tmp.o module_NEMS_UTILS.o -'module_NEMS_UTILS.tmp.o' -> 'module_NEMS_UTILS.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:40:41 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR_methods.tmp.o module_MEDIATOR_methods.o -'module_MEDIATOR_methods.tmp.o' -> 'module_MEDIATOR_methods.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:40:41 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:40:41 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR_SpaceWeather.tmp.o module_MEDIATOR_SpaceWeather.o -'module_MEDIATOR_SpaceWeather.tmp.o' -> 'module_MEDIATOR_SpaceWeather.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:40:41 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_EARTH_INTERNAL_STATE.tmp.o module_EARTH_INTERNAL_STATE.o -'module_EARTH_INTERNAL_STATE.tmp.o' -> 'module_EARTH_INTERNAL_STATE.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:40:41 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_EARTH_GRID_COMP.tmp.o module_EARTH_GRID_COMP.o -'module_EARTH_GRID_COMP.tmp.o' -> 'module_EARTH_GRID_COMP.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:40:41 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_NEMS_INTERNAL_STATE.tmp.o module_NEMS_INTERNAL_STATE.o -'module_NEMS_INTERNAL_STATE.tmp.o' -> 'module_NEMS_INTERNAL_STATE.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:40:41 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_NEMS_GRID_COMP.tmp.o module_NEMS_GRID_COMP.o -'module_NEMS_GRID_COMP.tmp.o' -> 'module_NEMS_GRID_COMP.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:40:41 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v module_NEMS_Rusage.tmp.o module_NEMS_Rusage.o -'module_NEMS_Rusage.tmp.o' -> 'module_NEMS_Rusage.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:40:41 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -mv -v MAIN_NEMS.tmp.o MAIN_NEMS.o -'MAIN_NEMS.tmp.o' -> 'MAIN_NEMS.o' -echo libgocart is -libgocart is -echo extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=gfortran -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libstochastic_physics.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/fv3_5.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/fv3_5.exe + #endif SW_DYNAMICS + +Warning: extra tokens at end of #endif directive +[ 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/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 +[ 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 +[ 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 +[ 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 +[ 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 +[ 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:314:110: + + upattern_3d(blk,:,k) = skeb_vwts(k,1)*skebu_save(blk,:,skeb_vpts(k,1))+skeb_vwts(k,2)*skebu_save(blk,:,skeb_vpts(k,2)) + 1 +Warning: Legacy Extension: REAL array index at (1) +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:314:62: + + upattern_3d(blk,:,k) = skeb_vwts(k,1)*skebu_save(blk,:,skeb_vpts(k,1))+skeb_vwts(k,2)*skebu_save(blk,:,skeb_vpts(k,2)) + 1 +Warning: Legacy Extension: REAL array index at (1) +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:315:110: + + vpattern_3d(blk,:,k) = skeb_vwts(k,1)*skebv_save(blk,:,skeb_vpts(k,1))+skeb_vwts(k,2)*skebv_save(blk,:,skeb_vpts(k,2)) + 1 +Warning: Legacy Extension: REAL array index at (1) +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:315:62: + + vpattern_3d(blk,:,k) = skeb_vwts(k,1)*skebv_save(blk,:,skeb_vpts(k,1))+skeb_vwts(k,2)*skebv_save(blk,:,skeb_vpts(k,2)) + 1 +Warning: Legacy Extension: REAL array index at (1) +[ 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_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_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_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 +[100%] Built target NEMS.exe ++ mv NEMS.exe ../fv3_1.exe ++ cp /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu/fv3 ../modules.fv3_1 ++ cd .. + '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_5 BUILD_ENV=cheyenne.gnu 'FV3_MAKEOPT=REPRO=Y 32BIT=Y' NEMS_BUILDOPT=REPRO=Y clean -Will copy modules.nems and NEMS.x as fv3_5 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ - exec gmake REPRO=Y 32BIT=Y -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -+ elapsed=319 -+ echo 'Elapsed time 319 seconds. Compiling REPRO=Y 32BIT=Y finished' -Elapsed time 319 seconds. Compiling REPRO=Y 32BIT=Y finished ++ rm -rf build_fv3_1 ++ elapsed=204 ++ echo 'Elapsed time 204 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta finished' +Elapsed time 204 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta finished + SECONDS=0 ++++ readlink -f ./compile_cmake.sh +++ dirname /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/compile_cmake.sh ++ readonly MYDIR=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests ++ MYDIR=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests ++ readonly ARGC=4 ++ ARGC=4 ++ cd /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests ++ [[ 4 -eq 0 ]] + [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.gnu -+ BUILD_TARGET=cheyenne.gnu -+ readonly 'MAKE_OPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp' -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp' -+ readonly BUILD_NAME=fv3_6 -+ BUILD_NAME=fv3_6 -+ readonly clean_before=YES ++ PATHTR=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu ++ MACHINE_ID=cheyenne.gnu ++ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y' ++ BUILD_NAME=fv3_2 + clean_before=YES -+ readonly clean_after=YES + clean_after=YES -+ hostname -cheyenne1 -+ echo 'Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp into fv3_6.exe on cheyenne.gnu' -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp into fv3_6.exe on cheyenne.gnu -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake ++ BUILD_DIR=build_fv3_2 + [[ cheyenne.gnu == cheyenne.* ]] + MAKE_THREADS=3 + MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp == *\W\W\3\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp == *\R\E\P\R\O\=\Y* ]] -+ NEMS_BUILDOPT=REPRO=Y ++ hostname +cheyenne6 ++ cd /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests ++ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y into fv3_2.exe on cheyenne.gnu' +Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y into fv3_2.exe on cheyenne.gnu + '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_6 BUILD_ENV=cheyenne.gnu 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp' NEMS_BUILDOPT=REPRO=Y distclean -Will copy modules.nems and NEMS.x as fv3_6 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include" ; \ -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp --clean -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: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include -GNUmakefile:70: : component CCPP makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_6 BUILD_ENV=cheyenne.gnu 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp' NEMS_BUILDOPT=REPRO=Y build -Will copy modules.nems and NEMS.x as fv3_6 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/modulefiles/cheyenne.gnu/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/modules.fv3_6" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/modules.fv3_6 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/conf/configure.fv3.cheyenne.gnu /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ -exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mpp/threadloc.c -o ../mpp/threadloc.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_domains.F90 -o ../mpp/mpp_domains.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_grid.F90 -o ../diag_manager/diag_grid.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_axis.F90 -o ../diag_manager/diag_axis.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp_external.F90 -o ../time_interp/time_interp_external.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_output.F90 -o ../diag_manager/diag_output.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_util.F90 -o ../diag_manager/diag_util.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manager.F90 -o ../diag_manager/diag_manager.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh cheyenne.gnu "$PATH_CCPP" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk \ - "REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp"" NO NO ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp"/include ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp ++ rm -rf build_fv3_2 ++ mkdir -p build_fv3_2 ++ 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/ .*//' +++ sed 's/.* SUITES=//' ++ SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta ++ cd /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu ++ ./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_2/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_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 @@ -11821,7 +2896,7 @@ INFO: Converting local name evap_land of variable kinematic_surface_upward_laten 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 @@ -12135,6 +3210,7 @@ INFO: Converting local name zorlo of variable surface_roughness_length_over_ocea 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 @@ -12364,7 +3440,6 @@ INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_mom 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 lgocart of variable flag_gocart 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 @@ -12526,7 +3601,7 @@ INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux 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 save_q of variable tracer_concentration_save 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 runoff of variable total_runoff 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 @@ -12697,7 +3772,7 @@ INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from 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 islmsk_cice of variable sea_land_ice_mask_cice 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 @@ -12836,7 +3911,7 @@ INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of var 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 runoff of variable total_runoff 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 @@ -12948,6 +4023,7 @@ INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_ 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 @@ -12995,6 +4071,7 @@ INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ 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 qgrs of variable tracer_concentration 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 con_t0c of variable temperature_at_zero_celsius from new to old metadata @@ -13107,7 +4184,7 @@ INFO: Converting local name restart of variable flag_for_restart from new to old 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html +INFO: Metadata table for model FV3 written to tests/build_fv3_2/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 @@ -13145,8 +4222,7 @@ 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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post +INFO: Parsed tables in scheme zhaocarr_precpd INFO: Parsed tables in scheme noahmpdrv INFO: Parsed tables in scheme myjpbl_wrapper INFO: Parsed tables in scheme GFS_surface_generic_pre @@ -13159,7 +4235,7 @@ 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 zhaocarr_precpd +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 @@ -13175,7 +4251,7 @@ 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_noahmp_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 @@ -13185,6 +4261,7 @@ 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 @@ -13195,7 +4272,6 @@ INFO: Parsed tables in scheme mp_thompson_post 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 gwdps_post INFO: Parsed tables in scheme cires_ugwp INFO: Parsed tables in scheme get_prs_fv3 INFO: Parsed tables in scheme get_phi_fv3 @@ -13205,9 +4281,7 @@ 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 GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post INFO: Parsed tables in scheme sfc_cice INFO: Parsed tables in scheme mynnrad_post INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre @@ -13239,6 +4313,7 @@ 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 @@ -13255,7 +4330,6 @@ 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_water_to_rain INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep 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 @@ -13279,7 +4353,6 @@ 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 explicit_rainfall_rate_from_previous_timestep 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 @@ -13294,6 +4367,7 @@ 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_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 @@ -13310,21 +4384,17 @@ 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 graupel_precipitation_rate_from_previous_timestep 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_precipitation_rate_from_previous_timestep 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 @@ -13384,11 +4454,9 @@ 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 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 @@ -13413,7 +4481,6 @@ 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_precipitation_rate_from_previous_timestep 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 @@ -13469,7 +4536,6 @@ 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 @@ -13496,23 +4562,315 @@ 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex +INFO: Metadata table for model FV3 written to tests/build_fv3_2/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 before entering 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 before entering 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 before entering MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 162 schemes to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_SCHEMES.mk, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_SCHEMES.sh +INFO: Added 164 schemes to tests/build_fv3_2/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_2/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_2/FV3/ccpp/physics/CCPP_SCHEMES.sh INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics ... +INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_2/FV3/ccpp/physics ... INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 6 auto-generated caps to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_CAPS.mk and /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_CAPS.cmake +INFO: Added 12 auto-generated caps to tests/build_fv3_2/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_2/FV3/ccpp/physics/CCPP_CAPS.cmake INFO: CCPP prebuild step completed successfully. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ ./build_ccpp.sh cheyenne.gnu /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk 'REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp' NO NO -MACHINE_ID=cheyenne.gnu is valid. -Compilers set for cheyenne.gnu. -Obtained ESMF_LIB=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib from /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -DNETCDF_DIR=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/ -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DOPENMP=ON -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... ++ source build_fv3_2/FV3/ccpp/physics/CCPP_SCHEMES.sh +++ export 'CCPP_SCHEMES=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfpbltq.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfscuq.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/satmedmfvdifq.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninshoc.f' +++ CCPP_SCHEMES='/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfpbltq.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfscuq.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/satmedmfvdifq.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninshoc.f' ++ source build_fv3_2/FV3/ccpp/physics/CCPP_CAPS.sh +++ export 'CCPP_CAPS=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_stochastics_cap.F90' +++ CCPP_CAPS='/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_stochastics_cap.F90' ++ source build_fv3_2/FV3/ccpp/physics/CCPP_STATIC_API.sh +++ export CCPP_STATIC_API=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_static_api.F90 +++ CCPP_STATIC_API=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/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* ]] +++ 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 /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/conf/module-setup.sh.inc +++ __ms_function_name=setup__test_function__60272 +++ eval 'setup__test_function__60272() { /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__60272 | 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 ]] +++ [[ -d /dcom ]] +++ [[ -L /usrx ]] +++ [[ -d /glade ]] +++ eval module help +++ module purge ++++ /glade/u/apps/ch/opt/lmod/8.1.7/lmod/lmod/libexec/lmod bash purge +++ eval 'MODULEPATH=/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep;' export 'MODULEPATH;' '_ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvY29tcGlsZXJzOi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pZGVwIix9;' export '_ModuleTable001_;' '_ModuleTable_Sz_=1;' export '_ModuleTable_Sz_;' ++++ MODULEPATH=/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep ++++ export MODULEPATH ++++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvY29tcGlsZXJzOi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pZGVwIix9 ++++ export _ModuleTable001_ ++++ _ModuleTable_Sz_=1 ++++ export _ModuleTable_Sz_ ++++ : -s sh +++ eval +++ unset __ms_shell +++ unset __ms_ksh_test +++ unset __ms_bash_test +++ unset setup__test_function__60272 +++ unset __ms_function_name ++ [[ cheyenne.gnu == macosx.* ]] ++ [[ cheyenne.gnu == linux.* ]] ++ module use /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu +++ /glade/u/apps/ch/opt/lmod/8.1.7/lmod/lmod/libexec/lmod bash use /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu ++ eval '__LMOD_REF_COUNT_MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu:1\;/glade/u/apps/ch/modulefiles/default/compilers:1\;/glade/u/apps/ch/modulefiles/default/idep:1;' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu:/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep;' export 'MODULEPATH;' '_ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9nbGFkZS93b3JrL2hlaW56ZWxsL2Z2My91ZnMtd2VhdGhlci1tb2RlbC91ZnMtd2VhdGhlci1tb2RlbF9wdWJsaWMtcmVsZWFzZV91cGRhdGUtZnJvbS1kdGMtZGV2ZWxvcC0yMDE5MTIwOS9nbnUvbW9kdWxlZmlsZXMvY2hleWVubmUuZ251IiwiL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVycyIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pZGVwIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9nbGFkZS91L2FwcHMvY2gv;' export '_ModuleTable001_;' '_ModuleTable002_=bW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnM6L2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2lkZXAiLH0=;' export '_ModuleTable002_;' '_ModuleTable_Sz_=2;' export '_ModuleTable_Sz_;' +++ __LMOD_REF_COUNT_MODULEPATH='/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu:1;/glade/u/apps/ch/modulefiles/default/compilers:1;/glade/u/apps/ch/modulefiles/default/idep:1' +++ export __LMOD_REF_COUNT_MODULEPATH +++ MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu:/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep +++ export MODULEPATH +++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9nbGFkZS93b3JrL2hlaW56ZWxsL2Z2My91ZnMtd2VhdGhlci1tb2RlbC91ZnMtd2VhdGhlci1tb2RlbF9wdWJsaWMtcmVsZWFzZV91cGRhdGUtZnJvbS1kdGMtZGV2ZWxvcC0yMDE5MTIwOS9nbnUvbW9kdWxlZmlsZXMvY2hleWVubmUuZ251IiwiL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVycyIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pZGVwIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9nbGFkZS91L2FwcHMvY2gv +++ export _ModuleTable001_ +++ _ModuleTable002_=bW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnM6L2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2lkZXAiLH0= +++ export _ModuleTable002_ +++ _ModuleTable_Sz_=2 +++ export _ModuleTable_Sz_ +++ : -s sh ++ eval ++ module load fv3 +++ /glade/u/apps/ch/opt/lmod/8.1.7/lmod/lmod/libexec/lmod bash load fv3 ++ eval 'BACIO_LIB4=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a;' export 'BACIO_LIB4;' 'CC=gcc;' export 'CC;' 'CESMDATAROOT=/glade/p/cesmdata/cseg;' export 'CESMDATAROOT;' 'CESMROOT=/glade/p/cesm;' export 'CESMROOT;' 'CMAKE_CXX_COMPILER=mpicxx;' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER=mpicc;' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER=mpif90;' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform=cheyenne.gnu;' export 'CMAKE_Platform;' 'COMPILER=gnu;' export 'COMPILER;' '__LMOD_REF_COUNT_CPATH=/glade/u/apps/ch/opt/mpt_fmods/2.19/gnu/8.3.0:1\;/glade/u/apps/ch/opt/mpt/2.19/include:1;' export '__LMOD_REF_COUNT_CPATH;' 'CPATH=/glade/u/apps/ch/opt/mpt_fmods/2.19/gnu/8.3.0:/glade/u/apps/ch/opt/mpt/2.19/include;' export 'CPATH;' 'CXX=g++;' export 'CXX;' 'DASK_ROOT_CONFIG=/glade/u/apps/config/dask;' export 'DASK_ROOT_CONFIG;' 'ENV=/etc/profile.d/modules.sh;' export 'ENV;' 'ESMFMKFILE=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib/esmf.mk;' export 'ESMFMKFILE;' 'F77=gfortran;' export 'F77;' 'F90=gfortran;' export 'F90;' 'FC=gfortran;' export 'FC;' '__LMOD_REF_COUNT_FPATH=/glade/u/apps/ch/opt/mpt/2.19/include:1;' export '__LMOD_REF_COUNT_FPATH;' 'FPATH=/glade/u/apps/ch/opt/mpt/2.19/include;' export 'FPATH;' 'GNU_MAJOR_VERSION=8.3;' export 'GNU_MAJOR_VERSION;' 'GNU_MINOR_VERSION=0;' export 'GNU_MINOR_VERSION;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH=/glade/u/apps/ch/opt/mpt_fmods/2.19/gnu/8.3.0:1\;/glade/u/apps/ch/opt/mpt/2.19/lib:1\;/glade/u/apps/ch/opt/gnu/8.3.0/lib64:1\;/glade/u/apps/ch/opt/gnu/8.3.0/lib64/gcc/x86_64-pc-linux-gnu/8.3.0:1\;/ncar/opt/slurm/latest/lib:1\;/glade/u/apps/ch/os/usr/lib64:1\;/glade/u/apps/ch/os/usr/lib:1\;/glade/u/apps/ch/os/lib64:1\;/glade/u/apps/ch/os/lib:1;' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=/glade/u/apps/ch/opt/mpt_fmods/2.19/gnu/8.3.0:/glade/u/apps/ch/opt/mpt/2.19/lib:/glade/u/apps/ch/opt/gnu/8.3.0/lib64:/glade/u/apps/ch/opt/gnu/8.3.0/lib64/gcc/x86_64-pc-linux-gnu/8.3.0:/ncar/opt/slurm/latest/lib:/glade/u/apps/ch/os/usr/lib64:/glade/u/apps/ch/os/usr/lib:/glade/u/apps/ch/os/lib64:/glade/u/apps/ch/os/lib;' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH=/glade/u/apps/ch/opt/mpt/2.19/lib:1;' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH=/glade/u/apps/ch/opt/mpt/2.19/lib;' export 'LIBRARY_PATH;' 'LMOD_COMPILER=gnu;' export 'LMOD_COMPILER;' 'LMOD_COMPILER_VERSION=8.3.0;' export 'LMOD_COMPILER_VERSION;' 'LMOD_FAMILY_COMPILER=gnu;' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION=8.3.0;' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI=mpt;' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION=2.19;' export 'LMOD_FAMILY_MPI_VERSION;' 'LMOD_MPI=mpt_fmods;' export 'LMOD_MPI;' 'LMOD_MPI_VERSION=2.19;' export 'LMOD_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES=ncarenv/1.3:1\;gnu/8.3.0:1\;mpt/2.19:1\;ncarcompilers/0.5.0:1\;netcdf/4.6.3:1\;esmf/8.0.0:1\;NCEPlibs/9.9.9:1\;SIONlib/1.7.4:1\;fv3:1;' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES=ncarenv/1.3:gnu/8.3.0:mpt/2.19:ncarcompilers/0.5.0:netcdf/4.6.3:esmf/8.0.0:NCEPlibs/9.9.9:SIONlib/1.7.4:fv3;' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/share/man:1\;/glade/u/apps/ch/opt/mpt/2.19/man:1\;/glade/u/apps/ch/opt/gnu/8.3.0/share/man:1\;/ncar/opt/slurm/latest/share/man:1\;/usr/local/man:1\;/usr/share/man:1\;/opt/pbs/share/man:1\;/opt/clmgr/man:1\;/opt/sgi/share/man:1;' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/share/man:/glade/u/apps/ch/opt/mpt/2.19/man:/glade/u/apps/ch/opt/gnu/8.3.0/share/man:/ncar/opt/slurm/latest/share/man:/usr/local/man:/usr/share/man:/opt/pbs/share/man:/opt/clmgr/man:/opt/sgi/share/man;' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu:1\;/glade/u/apps/ch/modulefiles/default/compilers:1\;/glade/u/apps/ch/modulefiles/default/idep:1\;/glade/u/apps/ch/modulefiles/default/gnu/8.3.0:1\;/glade/u/apps/ch/modulefiles/default/mpt/2.19/gnu/8.3.0:1\;/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19:1;' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu:/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep:/glade/u/apps/ch/modulefiles/default/gnu/8.3.0:/glade/u/apps/ch/modulefiles/default/mpt/2.19/gnu/8.3.0:/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19;' export 'MODULEPATH;' 'MPICC_CC=gcc;' export 'MPICC_CC;' 'MPICXX_CXX=g++;' export 'MPICXX_CXX;' 'MPIF08_F08=gfortran;' export 'MPIF08_F08;' 'MPIF90_F90=gfortran;' export 'MPIF90_F90;' 'MPI_IB_CONGESTED=1;' export 'MPI_IB_CONGESTED;' 'MPI_ROOT=/glade/u/apps/ch/opt/mpt/2.19;' export 'MPI_ROOT;' 'MPI_SYSLOG_COPY=2;' export 'MPI_SYSLOG_COPY;' 'MPT_VERSION=2.19;' export 'MPT_VERSION;' 'MP_COMPILER=gnu;' export 'MP_COMPILER;' 'NCAR_EXCLUDE_ASNEEDED=1;' export 'NCAR_EXCLUDE_ASNEEDED;' 'NCAR_HOST=cheyenne;' export 'NCAR_HOST;' 'NCAR_INC_GNU=/glade/u/apps/ch/opt/gnu/8.3.0/include;' export 'NCAR_INC_GNU;' 'NCAR_INC_NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include;' export 'NCAR_INC_NETCDF;' 'NCAR_LDFLAGS_GNU=/glade/u/apps/ch/opt/gnu/8.3.0/lib64;' export 'NCAR_LDFLAGS_GNU;' 'NCAR_LDFLAGS_GNU32=/glade/u/apps/ch/opt/gnu/8.3.0/lib64/gcc/x86_64-pc-linux-gnu/8.3.0;' export 'NCAR_LDFLAGS_GNU32;' 'NCAR_LDFLAGS_NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/lib;' export 'NCAR_LDFLAGS_NETCDF;' 'NCAR_LIBS_MPT=-lrt\' '-ldl;' export 'NCAR_LIBS_MPT;' 'NCAR_LIBS_NETCDF=-Wl,-Bstatic\' '-lnetcdff\' '-lnetcdf\' '-lhdf5hl_fortran\' '-lhdf5_hl\' '-lhdf5_fortran\' '-lhdf5\' '-lsz\' '-lz\' '-Wl,-Bdynamic\' '-lm\' '-ldl;' export 'NCAR_LIBS_NETCDF;' 'NCAR_RANK_MPT=1000;' export 'NCAR_RANK_MPT;' 'NCAR_ROOT_GNU=/glade/u/apps/ch/opt/gnu/8.3.0/;' export 'NCAR_ROOT_GNU;' 'NCAR_ROOT_MPT=/glade/u/apps/ch/opt/mpt/2.19;' export 'NCAR_ROOT_MPT;' 'NCAR_ROOT_NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/;' export 'NCAR_ROOT_NETCDF;' 'NCAR_WRAPPER_MPI=/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi;' export 'NCAR_WRAPPER_MPI;' 'NCEPLIBS_DIR=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19;' export 'NCEPLIBS_DIR;' 'NEMSIO_INC=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/include;' export 'NEMSIO_INC;' 'NEMSIO_LIB=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a;' export 'NEMSIO_LIB;' 'NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/;' export 'NETCDF;' 'OMP_NUM_THREADS=1;' export 'OMP_NUM_THREADS;' 'OMP_STACKSIZE=64000K;' export 'OMP_STACKSIZE;' 'OSHCC_CC=gcc;' export 'OSHCC_CC;' 'OSHCXX_CXX=g++;' export 'OSHCXX_CXX;' 'OSHF90_F90=gfortran;' export 'OSHF90_F90;' '__LMOD_REF_COUNT_PATH=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/bin:1\;/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/bin:1\;/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0:1\;/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi:1\;/glade/u/apps/ch/opt/mpt/2.19/bin:1\;/glade/u/apps/ch/opt/gnu/8.3.0/bin:1\;/glade/u/apps/opt/globus-utils:1\;/glade/u/apps/ch/opt/usr/bin:1\;/ncar/opt/slurm/latest/bin:1\;/opt/clmgr/sbin:1\;/opt/clmgr/bin:1\;/opt/sgi/sbin:1\;/opt/sgi/bin:1\;/glade/u/apps/ch/opt/lmod/8.1.7/bin:1\;/glade/u/home/heinzell/bin:1\;/usr/local/bin:1\;/usr/bin:1\;/bin:2\;/usr/bin/X11:1\;/usr/games:1\;/opt/ibutils/bin:1\;/usr/lib/mit/bin:1\;/opt/pbs/bin:1\;/sbin:1\;/glade/u/apps/opt/hpss/hpss-client.5.0.2.p5/bin:1\;/glade/u/apps/ch/os/usr/bin:1;' export '__LMOD_REF_COUNT_PATH;' 'PATH=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/bin:/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/bin:/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0:/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi:/glade/u/apps/ch/opt/mpt/2.19/bin:/glade/u/apps/ch/opt/gnu/8.3.0/bin:/glade/u/apps/opt/globus-utils:/glade/u/apps/ch/opt/usr/bin:/ncar/opt/slurm/latest/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/glade/u/apps/ch/opt/lmod/8.1.7/bin:/glade/u/home/heinzell/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games:/opt/ibutils/bin:/usr/lib/mit/bin:/opt/pbs/bin:/sbin:/glade/u/apps/opt/hpss/hpss-client.5.0.2.p5/bin:/glade/u/apps/ch/os/usr/bin;' export 'PATH;' 'PERL5LIB=/glade/u/apps/ch/os/usr/lib/perl5/5.18.2/;' export 'PERL5LIB;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/lib/pkgconfig:1;' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/lib/pkgconfig;' export 'PKG_CONFIG_PATH;' 'SIONLIB=/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19;' export 'SIONLIB;' 'SIONLIB_INC=-I/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/include\' '-I/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/include/mod_64;' export 'SIONLIB_INC;' 'SIONLIB_LIB=-L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib\' '-lsionmpi_f90_64\' '-lsionser_f90_64\' '-lsionmpi_64\' '-lsiongen_64\' '-lsionser_64\' '-lsioncom_64\' '-lsioncom_64_lock_none;' export 'SIONLIB_LIB;' 'SP_LIBd=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a;' export 'SP_LIBd;' 'W3EMC_LIBd=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a;' export 'W3EMC_LIBd;' 'W3NCO_LIBd=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a;' export 'W3NCO_LIBd;' 'WRFIO_NCD_LARGE_FILE_SUPPORT=1;' export 'WRFIO_NCD_LARGE_FILE_SUPPORT;' '__LMOD_REF_COUNT__LMFILES_=/glade/u/apps/ch/modulefiles/default/idep/ncarenv/1.3.lua:1\;/glade/u/apps/ch/modulefiles/default/compilers/gnu/8.3.0.lua:1\;/glade/u/apps/ch/modulefiles/default/gnu/8.3.0/mpt/2.19.lua:1\;/glade/u/apps/ch/modulefiles/default/gnu/8.3.0/ncarcompilers/0.5.0.lua:1\;/glade/u/apps/ch/modulefiles/default/gnu/8.3.0/netcdf/4.6.3.lua:1\;/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19/esmf/8.0.0:1\;/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19/NCEPlibs/9.9.9:1\;/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19/SIONlib/1.7.4:1\;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu/fv3:1;' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_=/glade/u/apps/ch/modulefiles/default/idep/ncarenv/1.3.lua:/glade/u/apps/ch/modulefiles/default/compilers/gnu/8.3.0.lua:/glade/u/apps/ch/modulefiles/default/gnu/8.3.0/mpt/2.19.lua:/glade/u/apps/ch/modulefiles/default/gnu/8.3.0/ncarcompilers/0.5.0.lua:/glade/u/apps/ch/modulefiles/default/gnu/8.3.0/netcdf/4.6.3.lua:/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19/esmf/8.0.0:/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19/NCEPlibs/9.9.9:/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19/SIONlib/1.7.4:/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu/fv3;' export '_LMFILES_;' '_ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImdudSIsWyJtcGkiXT0ibXB0Iix9LG1UPXtOQ0VQbGlicz17WyJmbiJdPSIvZ2xhZGUvcC9yYWwvam50cC9HTVRCL3Rvb2xzL21vZHVsZWZpbGVzL2dudS04LjMuMC9tcHQtMi4xOS9OQ0VQbGlicy85LjkuOSIsWyJmdWxsTmFtZSJdPSJOQ0VQbGlicy85LjkuOSIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Ik5DRVBsaWJzLzkuOS45Iix9LFNJT05saWI9e1siZm4iXT0iL2dsYWRlL3AvcmFsL2pu;' export '_ModuleTable001_;' '_ModuleTable002_=dHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9nbnUtOC4zLjAvbXB0LTIuMTkvU0lPTmxpYi8xLjcuNCIsWyJmdWxsTmFtZSJdPSJTSU9ObGliLzEuNy40IixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iU0lPTmxpYi8xLjcuNCIsfSxlc21mPXtbImZuIl09Ii9nbGFkZS9wL3JhbC9qbnRwL0dNVEIvdG9vbHMvbW9kdWxlZmlsZXMvZ251LTguMy4wL21wdC0yLjE5L2VzbWYvOC4wLjAiLFsiZnVsbE5hbWUiXT0iZXNtZi84LjAuMCIsWyJsb2FkT3JkZXIiXT02LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjAiLH0s;' export '_ModuleTable002_;' '_ModuleTable003_=ZnYzPXtbImZuIl09Ii9nbGFkZS93b3JrL2hlaW56ZWxsL2Z2My91ZnMtd2VhdGhlci1tb2RlbC91ZnMtd2VhdGhlci1tb2RlbF9wdWJsaWMtcmVsZWFzZV91cGRhdGUtZnJvbS1kdGMtZGV2ZWxvcC0yMDE5MTIwOS9nbnUvbW9kdWxlZmlsZXMvY2hleWVubmUuZ251L2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09OSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZ251PXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMvZ251LzguMy4wLmx1YSIsWyJmdWxsTmFtZSJdPSJnbnUvOC4zLjAiLFsibG9hZE9yZGVyIl09Mixwcm9wVD17fSxb;' export '_ModuleTable003_;' '_ModuleTable004_=InN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnbnUvOC4zLjAiLH0sbXB0PXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9nbnUvOC4zLjAvbXB0LzIuMTkubHVhIixbImZ1bGxOYW1lIl09Im1wdC8yLjE5IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibXB0LzIuMTkiLH0sbmNhcmNvbXBpbGVycz17WyJmbiJdPSIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvZ251LzguMy4wL25jYXJjb21waWxlcnMvMC41LjAubHVhIixbImZ1bGxOYW1lIl09Im5jYXJjb21waWxlcnMvMC41LjAiLFsibG9h;' export '_ModuleTable004_;' '_ModuleTable005_=ZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuY2FyY29tcGlsZXJzLzAuNS4wIix9LG5jYXJlbnY9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2lkZXAvbmNhcmVudi8xLjMubHVhIixbImZ1bGxOYW1lIl09Im5jYXJlbnYvMS4zIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmNhcmVudi8xLjMiLH0sbmV0Y2RmPXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9nbnUvOC4zLjAvbmV0Y2RmLzQuNi4zLmx1YSIsWyJmdWxsTmFtZSJdPSJu;' export '_ModuleTable005_;' '_ModuleTable006_=ZXRjZGYvNC42LjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuZXRjZGYvNC42LjMiLH0sfSxtcGF0aEE9eyIvZ2xhZGUvd29yay9oZWluemVsbC9mdjMvdWZzLXdlYXRoZXItbW9kZWwvdWZzLXdlYXRoZXItbW9kZWxfcHVibGljLXJlbGVhc2VfdXBkYXRlLWZyb20tZHRjLWRldmVsb3AtMjAxOTEyMDkvZ251L21vZHVsZWZpbGVzL2NoZXllbm5lLmdudSIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVs;' export '_ModuleTable006_;' '_ModuleTable007_=dC9nbnUvOC4zLjAiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvbXB0LzIuMTkvZ251LzguMy4wIiwiL2dsYWRlL3AvcmFsL2pudHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9nbnUtOC4zLjAvbXB0LTIuMTkiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVyczovZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfQ==;' export '_ModuleTable007_;' '_ModuleTable_Sz_=7;' export '_ModuleTable_Sz_;' ncar_pylib '()' '{' . '/glade/u/apps/opt/ncar_pylib/ncar_pylib;' '};' +++ BACIO_LIB4=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a +++ export BACIO_LIB4 +++ CC=gcc +++ export CC +++ CESMDATAROOT=/glade/p/cesmdata/cseg +++ export CESMDATAROOT +++ CESMROOT=/glade/p/cesm +++ export CESMROOT +++ CMAKE_CXX_COMPILER=mpicxx +++ export CMAKE_CXX_COMPILER +++ CMAKE_C_COMPILER=mpicc +++ export CMAKE_C_COMPILER +++ CMAKE_Fortran_COMPILER=mpif90 +++ export CMAKE_Fortran_COMPILER +++ CMAKE_Platform=cheyenne.gnu +++ export CMAKE_Platform +++ COMPILER=gnu +++ export COMPILER +++ __LMOD_REF_COUNT_CPATH='/glade/u/apps/ch/opt/mpt_fmods/2.19/gnu/8.3.0:1;/glade/u/apps/ch/opt/mpt/2.19/include:1' +++ export __LMOD_REF_COUNT_CPATH +++ CPATH=/glade/u/apps/ch/opt/mpt_fmods/2.19/gnu/8.3.0:/glade/u/apps/ch/opt/mpt/2.19/include +++ export CPATH +++ CXX=g++ +++ export CXX +++ DASK_ROOT_CONFIG=/glade/u/apps/config/dask +++ export DASK_ROOT_CONFIG +++ ENV=/etc/profile.d/modules.sh +++ export ENV +++ ESMFMKFILE=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib/esmf.mk +++ export ESMFMKFILE +++ F77=gfortran +++ export F77 +++ F90=gfortran +++ export F90 +++ FC=gfortran +++ export FC +++ __LMOD_REF_COUNT_FPATH=/glade/u/apps/ch/opt/mpt/2.19/include:1 +++ export __LMOD_REF_COUNT_FPATH +++ FPATH=/glade/u/apps/ch/opt/mpt/2.19/include +++ export FPATH +++ GNU_MAJOR_VERSION=8.3 +++ export GNU_MAJOR_VERSION +++ GNU_MINOR_VERSION=0 +++ export GNU_MINOR_VERSION +++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/glade/u/apps/ch/opt/mpt_fmods/2.19/gnu/8.3.0:1;/glade/u/apps/ch/opt/mpt/2.19/lib:1;/glade/u/apps/ch/opt/gnu/8.3.0/lib64:1;/glade/u/apps/ch/opt/gnu/8.3.0/lib64/gcc/x86_64-pc-linux-gnu/8.3.0:1;/ncar/opt/slurm/latest/lib:1;/glade/u/apps/ch/os/usr/lib64:1;/glade/u/apps/ch/os/usr/lib:1;/glade/u/apps/ch/os/lib64:1;/glade/u/apps/ch/os/lib:1' +++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH +++ LD_LIBRARY_PATH=/glade/u/apps/ch/opt/mpt_fmods/2.19/gnu/8.3.0:/glade/u/apps/ch/opt/mpt/2.19/lib:/glade/u/apps/ch/opt/gnu/8.3.0/lib64:/glade/u/apps/ch/opt/gnu/8.3.0/lib64/gcc/x86_64-pc-linux-gnu/8.3.0:/ncar/opt/slurm/latest/lib:/glade/u/apps/ch/os/usr/lib64:/glade/u/apps/ch/os/usr/lib:/glade/u/apps/ch/os/lib64:/glade/u/apps/ch/os/lib +++ export LD_LIBRARY_PATH +++ __LMOD_REF_COUNT_LIBRARY_PATH=/glade/u/apps/ch/opt/mpt/2.19/lib:1 +++ export __LMOD_REF_COUNT_LIBRARY_PATH +++ LIBRARY_PATH=/glade/u/apps/ch/opt/mpt/2.19/lib +++ export LIBRARY_PATH +++ LMOD_COMPILER=gnu +++ export LMOD_COMPILER +++ LMOD_COMPILER_VERSION=8.3.0 +++ export LMOD_COMPILER_VERSION +++ LMOD_FAMILY_COMPILER=gnu +++ export LMOD_FAMILY_COMPILER +++ LMOD_FAMILY_COMPILER_VERSION=8.3.0 +++ export LMOD_FAMILY_COMPILER_VERSION +++ LMOD_FAMILY_MPI=mpt +++ export LMOD_FAMILY_MPI +++ LMOD_FAMILY_MPI_VERSION=2.19 +++ export LMOD_FAMILY_MPI_VERSION +++ LMOD_MPI=mpt_fmods +++ export LMOD_MPI +++ LMOD_MPI_VERSION=2.19 +++ export LMOD_MPI_VERSION +++ __LMOD_REF_COUNT_LOADEDMODULES='ncarenv/1.3:1;gnu/8.3.0:1;mpt/2.19:1;ncarcompilers/0.5.0:1;netcdf/4.6.3:1;esmf/8.0.0:1;NCEPlibs/9.9.9:1;SIONlib/1.7.4:1;fv3:1' +++ export __LMOD_REF_COUNT_LOADEDMODULES +++ LOADEDMODULES=ncarenv/1.3:gnu/8.3.0:mpt/2.19:ncarcompilers/0.5.0:netcdf/4.6.3:esmf/8.0.0:NCEPlibs/9.9.9:SIONlib/1.7.4:fv3 +++ export LOADEDMODULES +++ __LMOD_REF_COUNT_MANPATH='/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/share/man:1;/glade/u/apps/ch/opt/mpt/2.19/man:1;/glade/u/apps/ch/opt/gnu/8.3.0/share/man:1;/ncar/opt/slurm/latest/share/man:1;/usr/local/man:1;/usr/share/man:1;/opt/pbs/share/man:1;/opt/clmgr/man:1;/opt/sgi/share/man:1' +++ export __LMOD_REF_COUNT_MANPATH +++ MANPATH=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/share/man:/glade/u/apps/ch/opt/mpt/2.19/man:/glade/u/apps/ch/opt/gnu/8.3.0/share/man:/ncar/opt/slurm/latest/share/man:/usr/local/man:/usr/share/man:/opt/pbs/share/man:/opt/clmgr/man:/opt/sgi/share/man +++ export MANPATH +++ __LMOD_REF_COUNT_MODULEPATH='/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu:1;/glade/u/apps/ch/modulefiles/default/compilers:1;/glade/u/apps/ch/modulefiles/default/idep:1;/glade/u/apps/ch/modulefiles/default/gnu/8.3.0:1;/glade/u/apps/ch/modulefiles/default/mpt/2.19/gnu/8.3.0:1;/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19:1' +++ export __LMOD_REF_COUNT_MODULEPATH +++ MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu:/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep:/glade/u/apps/ch/modulefiles/default/gnu/8.3.0:/glade/u/apps/ch/modulefiles/default/mpt/2.19/gnu/8.3.0:/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19 +++ export MODULEPATH +++ MPICC_CC=gcc +++ export MPICC_CC +++ MPICXX_CXX=g++ +++ export MPICXX_CXX +++ MPIF08_F08=gfortran +++ export MPIF08_F08 +++ MPIF90_F90=gfortran +++ export MPIF90_F90 +++ MPI_IB_CONGESTED=1 +++ export MPI_IB_CONGESTED +++ MPI_ROOT=/glade/u/apps/ch/opt/mpt/2.19 +++ export MPI_ROOT +++ MPI_SYSLOG_COPY=2 +++ export MPI_SYSLOG_COPY +++ MPT_VERSION=2.19 +++ export MPT_VERSION +++ MP_COMPILER=gnu +++ export MP_COMPILER +++ NCAR_EXCLUDE_ASNEEDED=1 +++ export NCAR_EXCLUDE_ASNEEDED +++ NCAR_HOST=cheyenne +++ export NCAR_HOST +++ NCAR_INC_GNU=/glade/u/apps/ch/opt/gnu/8.3.0/include +++ export NCAR_INC_GNU +++ NCAR_INC_NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include +++ export NCAR_INC_NETCDF +++ NCAR_LDFLAGS_GNU=/glade/u/apps/ch/opt/gnu/8.3.0/lib64 +++ export NCAR_LDFLAGS_GNU +++ NCAR_LDFLAGS_GNU32=/glade/u/apps/ch/opt/gnu/8.3.0/lib64/gcc/x86_64-pc-linux-gnu/8.3.0 +++ export NCAR_LDFLAGS_GNU32 +++ NCAR_LDFLAGS_NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/lib +++ export NCAR_LDFLAGS_NETCDF +++ NCAR_LIBS_MPT='-lrt -ldl' +++ export NCAR_LIBS_MPT +++ NCAR_LIBS_NETCDF='-Wl,-Bstatic -lnetcdff -lnetcdf -lhdf5hl_fortran -lhdf5_hl -lhdf5_fortran -lhdf5 -lsz -lz -Wl,-Bdynamic -lm -ldl' +++ export NCAR_LIBS_NETCDF +++ NCAR_RANK_MPT=1000 +++ export NCAR_RANK_MPT +++ NCAR_ROOT_GNU=/glade/u/apps/ch/opt/gnu/8.3.0/ +++ export NCAR_ROOT_GNU +++ NCAR_ROOT_MPT=/glade/u/apps/ch/opt/mpt/2.19 +++ export NCAR_ROOT_MPT +++ NCAR_ROOT_NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/ +++ export NCAR_ROOT_NETCDF +++ NCAR_WRAPPER_MPI=/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi +++ export NCAR_WRAPPER_MPI +++ NCEPLIBS_DIR=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19 +++ export NCEPLIBS_DIR +++ NEMSIO_INC=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/include +++ export NEMSIO_INC +++ NEMSIO_LIB=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a +++ export NEMSIO_LIB +++ NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/ +++ export NETCDF +++ OMP_NUM_THREADS=1 +++ export OMP_NUM_THREADS +++ OMP_STACKSIZE=64000K +++ export OMP_STACKSIZE +++ OSHCC_CC=gcc +++ export OSHCC_CC +++ OSHCXX_CXX=g++ +++ export OSHCXX_CXX +++ OSHF90_F90=gfortran +++ export OSHF90_F90 +++ __LMOD_REF_COUNT_PATH='/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/bin:1;/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/bin:1;/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0:1;/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi:1;/glade/u/apps/ch/opt/mpt/2.19/bin:1;/glade/u/apps/ch/opt/gnu/8.3.0/bin:1;/glade/u/apps/opt/globus-utils:1;/glade/u/apps/ch/opt/usr/bin:1;/ncar/opt/slurm/latest/bin:1;/opt/clmgr/sbin:1;/opt/clmgr/bin:1;/opt/sgi/sbin:1;/opt/sgi/bin:1;/glade/u/apps/ch/opt/lmod/8.1.7/bin:1;/glade/u/home/heinzell/bin:1;/usr/local/bin:1;/usr/bin:1;/bin:2;/usr/bin/X11:1;/usr/games:1;/opt/ibutils/bin:1;/usr/lib/mit/bin:1;/opt/pbs/bin:1;/sbin:1;/glade/u/apps/opt/hpss/hpss-client.5.0.2.p5/bin:1;/glade/u/apps/ch/os/usr/bin:1' +++ export __LMOD_REF_COUNT_PATH +++ PATH=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/bin:/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/bin:/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0:/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi:/glade/u/apps/ch/opt/mpt/2.19/bin:/glade/u/apps/ch/opt/gnu/8.3.0/bin:/glade/u/apps/opt/globus-utils:/glade/u/apps/ch/opt/usr/bin:/ncar/opt/slurm/latest/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/glade/u/apps/ch/opt/lmod/8.1.7/bin:/glade/u/home/heinzell/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games:/opt/ibutils/bin:/usr/lib/mit/bin:/opt/pbs/bin:/sbin:/glade/u/apps/opt/hpss/hpss-client.5.0.2.p5/bin:/glade/u/apps/ch/os/usr/bin +++ export PATH +++ PERL5LIB=/glade/u/apps/ch/os/usr/lib/perl5/5.18.2/ +++ export PERL5LIB +++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/lib/pkgconfig:1 +++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH +++ PKG_CONFIG_PATH=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/lib/pkgconfig +++ export PKG_CONFIG_PATH +++ SIONLIB=/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19 +++ export SIONLIB +++ SIONLIB_INC='-I/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/include -I/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/include/mod_64' +++ export SIONLIB_INC +++ SIONLIB_LIB='-L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none' +++ export SIONLIB_LIB +++ SP_LIBd=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a +++ export SP_LIBd +++ W3EMC_LIBd=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a +++ export W3EMC_LIBd +++ W3NCO_LIBd=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a +++ export W3NCO_LIBd +++ WRFIO_NCD_LARGE_FILE_SUPPORT=1 +++ export WRFIO_NCD_LARGE_FILE_SUPPORT +++ __LMOD_REF_COUNT__LMFILES_='/glade/u/apps/ch/modulefiles/default/idep/ncarenv/1.3.lua:1;/glade/u/apps/ch/modulefiles/default/compilers/gnu/8.3.0.lua:1;/glade/u/apps/ch/modulefiles/default/gnu/8.3.0/mpt/2.19.lua:1;/glade/u/apps/ch/modulefiles/default/gnu/8.3.0/ncarcompilers/0.5.0.lua:1;/glade/u/apps/ch/modulefiles/default/gnu/8.3.0/netcdf/4.6.3.lua:1;/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19/esmf/8.0.0:1;/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19/NCEPlibs/9.9.9:1;/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19/SIONlib/1.7.4:1;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu/fv3:1' +++ export __LMOD_REF_COUNT__LMFILES_ +++ _LMFILES_=/glade/u/apps/ch/modulefiles/default/idep/ncarenv/1.3.lua:/glade/u/apps/ch/modulefiles/default/compilers/gnu/8.3.0.lua:/glade/u/apps/ch/modulefiles/default/gnu/8.3.0/mpt/2.19.lua:/glade/u/apps/ch/modulefiles/default/gnu/8.3.0/ncarcompilers/0.5.0.lua:/glade/u/apps/ch/modulefiles/default/gnu/8.3.0/netcdf/4.6.3.lua:/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19/esmf/8.0.0:/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19/NCEPlibs/9.9.9:/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19/SIONlib/1.7.4:/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu/fv3 +++ export _LMFILES_ +++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImdudSIsWyJtcGkiXT0ibXB0Iix9LG1UPXtOQ0VQbGlicz17WyJmbiJdPSIvZ2xhZGUvcC9yYWwvam50cC9HTVRCL3Rvb2xzL21vZHVsZWZpbGVzL2dudS04LjMuMC9tcHQtMi4xOS9OQ0VQbGlicy85LjkuOSIsWyJmdWxsTmFtZSJdPSJOQ0VQbGlicy85LjkuOSIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Ik5DRVBsaWJzLzkuOS45Iix9LFNJT05saWI9e1siZm4iXT0iL2dsYWRlL3AvcmFsL2pu +++ export _ModuleTable001_ +++ _ModuleTable002_=dHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9nbnUtOC4zLjAvbXB0LTIuMTkvU0lPTmxpYi8xLjcuNCIsWyJmdWxsTmFtZSJdPSJTSU9ObGliLzEuNy40IixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iU0lPTmxpYi8xLjcuNCIsfSxlc21mPXtbImZuIl09Ii9nbGFkZS9wL3JhbC9qbnRwL0dNVEIvdG9vbHMvbW9kdWxlZmlsZXMvZ251LTguMy4wL21wdC0yLjE5L2VzbWYvOC4wLjAiLFsiZnVsbE5hbWUiXT0iZXNtZi84LjAuMCIsWyJsb2FkT3JkZXIiXT02LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjAiLH0s +++ export _ModuleTable002_ +++ _ModuleTable003_=ZnYzPXtbImZuIl09Ii9nbGFkZS93b3JrL2hlaW56ZWxsL2Z2My91ZnMtd2VhdGhlci1tb2RlbC91ZnMtd2VhdGhlci1tb2RlbF9wdWJsaWMtcmVsZWFzZV91cGRhdGUtZnJvbS1kdGMtZGV2ZWxvcC0yMDE5MTIwOS9nbnUvbW9kdWxlZmlsZXMvY2hleWVubmUuZ251L2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09OSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZ251PXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMvZ251LzguMy4wLmx1YSIsWyJmdWxsTmFtZSJdPSJnbnUvOC4zLjAiLFsibG9hZE9yZGVyIl09Mixwcm9wVD17fSxb +++ export _ModuleTable003_ +++ _ModuleTable004_=InN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnbnUvOC4zLjAiLH0sbXB0PXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9nbnUvOC4zLjAvbXB0LzIuMTkubHVhIixbImZ1bGxOYW1lIl09Im1wdC8yLjE5IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibXB0LzIuMTkiLH0sbmNhcmNvbXBpbGVycz17WyJmbiJdPSIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvZ251LzguMy4wL25jYXJjb21waWxlcnMvMC41LjAubHVhIixbImZ1bGxOYW1lIl09Im5jYXJjb21waWxlcnMvMC41LjAiLFsibG9h +++ export _ModuleTable004_ +++ _ModuleTable005_=ZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuY2FyY29tcGlsZXJzLzAuNS4wIix9LG5jYXJlbnY9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2lkZXAvbmNhcmVudi8xLjMubHVhIixbImZ1bGxOYW1lIl09Im5jYXJlbnYvMS4zIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmNhcmVudi8xLjMiLH0sbmV0Y2RmPXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9nbnUvOC4zLjAvbmV0Y2RmLzQuNi4zLmx1YSIsWyJmdWxsTmFtZSJdPSJu +++ export _ModuleTable005_ +++ _ModuleTable006_=ZXRjZGYvNC42LjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuZXRjZGYvNC42LjMiLH0sfSxtcGF0aEE9eyIvZ2xhZGUvd29yay9oZWluemVsbC9mdjMvdWZzLXdlYXRoZXItbW9kZWwvdWZzLXdlYXRoZXItbW9kZWxfcHVibGljLXJlbGVhc2VfdXBkYXRlLWZyb20tZHRjLWRldmVsb3AtMjAxOTEyMDkvZ251L21vZHVsZWZpbGVzL2NoZXllbm5lLmdudSIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVs +++ export _ModuleTable006_ +++ _ModuleTable007_=dC9nbnUvOC4zLjAiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvbXB0LzIuMTkvZ251LzguMy4wIiwiL2dsYWRlL3AvcmFsL2pudHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9nbnUtOC4zLjAvbXB0LTIuMTkiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVyczovZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfQ== +++ export _ModuleTable007_ +++ _ModuleTable_Sz_=7 +++ export _ModuleTable_Sz_ +++ : -s sh ++ eval ++ module list +++ /glade/u/apps/ch/opt/lmod/8.1.7/lmod/lmod/libexec/lmod bash list + +Currently Loaded Modules: + 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 + 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 + 3) mpt/2.19 6) esmf/8.0.0 9) fv3 + + + ++ eval 'MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu:/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep:/glade/u/apps/ch/modulefiles/default/gnu/8.3.0:/glade/u/apps/ch/modulefiles/default/mpt/2.19/gnu/8.3.0:/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19;' export 'MODULEPATH;' '_ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImdudSIsWyJtcGkiXT0ibXB0Iix9LG1UPXtOQ0VQbGlicz17WyJmbiJdPSIvZ2xhZGUvcC9yYWwvam50cC9HTVRCL3Rvb2xzL21vZHVsZWZpbGVzL2dudS04LjMuMC9tcHQtMi4xOS9OQ0VQbGlicy85LjkuOSIsWyJmdWxsTmFtZSJdPSJOQ0VQbGlicy85LjkuOSIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Ik5DRVBsaWJzLzkuOS45Iix9LFNJT05saWI9e1siZm4iXT0iL2dsYWRlL3AvcmFsL2pu;' export '_ModuleTable001_;' '_ModuleTable002_=dHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9nbnUtOC4zLjAvbXB0LTIuMTkvU0lPTmxpYi8xLjcuNCIsWyJmdWxsTmFtZSJdPSJTSU9ObGliLzEuNy40IixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iU0lPTmxpYi8xLjcuNCIsfSxlc21mPXtbImZuIl09Ii9nbGFkZS9wL3JhbC9qbnRwL0dNVEIvdG9vbHMvbW9kdWxlZmlsZXMvZ251LTguMy4wL21wdC0yLjE5L2VzbWYvOC4wLjAiLFsiZnVsbE5hbWUiXT0iZXNtZi84LjAuMCIsWyJsb2FkT3JkZXIiXT02LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjAiLH0s;' export '_ModuleTable002_;' '_ModuleTable003_=ZnYzPXtbImZuIl09Ii9nbGFkZS93b3JrL2hlaW56ZWxsL2Z2My91ZnMtd2VhdGhlci1tb2RlbC91ZnMtd2VhdGhlci1tb2RlbF9wdWJsaWMtcmVsZWFzZV91cGRhdGUtZnJvbS1kdGMtZGV2ZWxvcC0yMDE5MTIwOS9nbnUvbW9kdWxlZmlsZXMvY2hleWVubmUuZ251L2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09OSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZ251PXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMvZ251LzguMy4wLmx1YSIsWyJmdWxsTmFtZSJdPSJnbnUvOC4zLjAiLFsibG9hZE9yZGVyIl09Mixwcm9wVD17fSxb;' export '_ModuleTable003_;' '_ModuleTable004_=InN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnbnUvOC4zLjAiLH0sbXB0PXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9nbnUvOC4zLjAvbXB0LzIuMTkubHVhIixbImZ1bGxOYW1lIl09Im1wdC8yLjE5IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibXB0LzIuMTkiLH0sbmNhcmNvbXBpbGVycz17WyJmbiJdPSIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvZ251LzguMy4wL25jYXJjb21waWxlcnMvMC41LjAubHVhIixbImZ1bGxOYW1lIl09Im5jYXJjb21waWxlcnMvMC41LjAiLFsibG9h;' export '_ModuleTable004_;' '_ModuleTable005_=ZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuY2FyY29tcGlsZXJzLzAuNS4wIix9LG5jYXJlbnY9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2lkZXAvbmNhcmVudi8xLjMubHVhIixbImZ1bGxOYW1lIl09Im5jYXJlbnYvMS4zIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmNhcmVudi8xLjMiLH0sbmV0Y2RmPXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9nbnUvOC4zLjAvbmV0Y2RmLzQuNi4zLmx1YSIsWyJmdWxsTmFtZSJdPSJu;' export '_ModuleTable005_;' '_ModuleTable006_=ZXRjZGYvNC42LjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuZXRjZGYvNC42LjMiLH0sfSxtcGF0aEE9eyIvZ2xhZGUvd29yay9oZWluemVsbC9mdjMvdWZzLXdlYXRoZXItbW9kZWwvdWZzLXdlYXRoZXItbW9kZWxfcHVibGljLXJlbGVhc2VfdXBkYXRlLWZyb20tZHRjLWRldmVsb3AtMjAxOTEyMDkvZ251L21vZHVsZWZpbGVzL2NoZXllbm5lLmdudSIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVs;' export '_ModuleTable006_;' '_ModuleTable007_=dC9nbnUvOC4zLjAiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvbXB0LzIuMTkvZ251LzguMy4wIiwiL2dsYWRlL3AvcmFsL2pudHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9nbnUtOC4zLjAvbXB0LTIuMTkiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVyczovZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfQ==;' export '_ModuleTable007_;' '_ModuleTable_Sz_=7;' export '_ModuleTable_Sz_;' +++ MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu:/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep:/glade/u/apps/ch/modulefiles/default/gnu/8.3.0:/glade/u/apps/ch/modulefiles/default/mpt/2.19/gnu/8.3.0:/glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-8.3.0/mpt-2.19 +++ export MODULEPATH +++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImdudSIsWyJtcGkiXT0ibXB0Iix9LG1UPXtOQ0VQbGlicz17WyJmbiJdPSIvZ2xhZGUvcC9yYWwvam50cC9HTVRCL3Rvb2xzL21vZHVsZWZpbGVzL2dudS04LjMuMC9tcHQtMi4xOS9OQ0VQbGlicy85LjkuOSIsWyJmdWxsTmFtZSJdPSJOQ0VQbGlicy85LjkuOSIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Ik5DRVBsaWJzLzkuOS45Iix9LFNJT05saWI9e1siZm4iXT0iL2dsYWRlL3AvcmFsL2pu +++ export _ModuleTable001_ +++ _ModuleTable002_=dHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9nbnUtOC4zLjAvbXB0LTIuMTkvU0lPTmxpYi8xLjcuNCIsWyJmdWxsTmFtZSJdPSJTSU9ObGliLzEuNy40IixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iU0lPTmxpYi8xLjcuNCIsfSxlc21mPXtbImZuIl09Ii9nbGFkZS9wL3JhbC9qbnRwL0dNVEIvdG9vbHMvbW9kdWxlZmlsZXMvZ251LTguMy4wL21wdC0yLjE5L2VzbWYvOC4wLjAiLFsiZnVsbE5hbWUiXT0iZXNtZi84LjAuMCIsWyJsb2FkT3JkZXIiXT02LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjAiLH0s +++ export _ModuleTable002_ +++ _ModuleTable003_=ZnYzPXtbImZuIl09Ii9nbGFkZS93b3JrL2hlaW56ZWxsL2Z2My91ZnMtd2VhdGhlci1tb2RlbC91ZnMtd2VhdGhlci1tb2RlbF9wdWJsaWMtcmVsZWFzZV91cGRhdGUtZnJvbS1kdGMtZGV2ZWxvcC0yMDE5MTIwOS9nbnUvbW9kdWxlZmlsZXMvY2hleWVubmUuZ251L2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09OSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZ251PXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMvZ251LzguMy4wLmx1YSIsWyJmdWxsTmFtZSJdPSJnbnUvOC4zLjAiLFsibG9hZE9yZGVyIl09Mixwcm9wVD17fSxb +++ export _ModuleTable003_ +++ _ModuleTable004_=InN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnbnUvOC4zLjAiLH0sbXB0PXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9nbnUvOC4zLjAvbXB0LzIuMTkubHVhIixbImZ1bGxOYW1lIl09Im1wdC8yLjE5IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibXB0LzIuMTkiLH0sbmNhcmNvbXBpbGVycz17WyJmbiJdPSIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvZ251LzguMy4wL25jYXJjb21waWxlcnMvMC41LjAubHVhIixbImZ1bGxOYW1lIl09Im5jYXJjb21waWxlcnMvMC41LjAiLFsibG9h +++ export _ModuleTable004_ +++ _ModuleTable005_=ZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuY2FyY29tcGlsZXJzLzAuNS4wIix9LG5jYXJlbnY9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2lkZXAvbmNhcmVudi8xLjMubHVhIixbImZ1bGxOYW1lIl09Im5jYXJlbnYvMS4zIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmNhcmVudi8xLjMiLH0sbmV0Y2RmPXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9nbnUvOC4zLjAvbmV0Y2RmLzQuNi4zLmx1YSIsWyJmdWxsTmFtZSJdPSJu +++ export _ModuleTable005_ +++ _ModuleTable006_=ZXRjZGYvNC42LjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuZXRjZGYvNC42LjMiLH0sfSxtcGF0aEE9eyIvZ2xhZGUvd29yay9oZWluemVsbC9mdjMvdWZzLXdlYXRoZXItbW9kZWwvdWZzLXdlYXRoZXItbW9kZWxfcHVibGljLXJlbGVhc2VfdXBkYXRlLWZyb20tZHRjLWRldmVsb3AtMjAxOTEyMDkvZ251L21vZHVsZWZpbGVzL2NoZXllbm5lLmdudSIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVs +++ export _ModuleTable006_ +++ _ModuleTable007_=dC9nbnUvOC4zLjAiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvbXB0LzIuMTkvZ251LzguMy4wIiwiL2dsYWRlL3AvcmFsL2pudHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9nbnUtOC4zLjAvbXB0LTIuMTkiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVyczovZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfQ== +++ export _ModuleTable007_ +++ _ModuleTable_Sz_=7 +++ export _ModuleTable_Sz_ +++ : -s sh ++ eval ++ cd build_fv3_2 ++ cmake /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu -DDEBUG=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -- The C compiler identification is GNU 8.3.0 -- The CXX compiler identification is GNU 8.3.0 +-- The Fortran compiler identification is GNU 8.3.0 -- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -- works -- Detecting C compiler ABI info @@ -13525,13 +4883,39 @@ Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMS -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done --- The Fortran compiler identification is GNU 8.3.0 -- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -- works -- Detecting Fortran compiler ABI info -- Detecting Fortran compiler ABI info - done -- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 supports Fortran 90 -- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 supports Fortran 90 -- yes +-- Found MPI_C: /usr/lib64/libpthread.so;/glade/u/apps/ch/opt/mpt/2.19/lib/libmpi.so +-- Found MPI_CXX: /usr/lib64/libpthread.so;/glade/u/apps/ch/opt/mpt/2.19/lib/libmpi++.so;/glade/u/apps/ch/opt/mpt/2.19/lib/libmpi.so +-- Found MPI_Fortran: /usr/lib64/libpthread.so;/glade/u/apps/ch/opt/mpt/2.19/lib/libmpi.so +ESMFMKFILE: /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib/esmf.mk + Found ESMF: +ESMF_VERSION_MAJOR: 8 +ESMF_F90COMPILEPATHS: /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod;/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include;/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include +ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib +ESMF_F90ESMFLINKLIBS: -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf +-- Found ESMF: /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod;/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include;/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include (found version "8.0.0") + +Setting configuration for cheyenne.gnu + +C compiler: GNU 8.3.0 (mpicc) +CXX compiler: GNU 8.3.0 (mpicxx) +Fortran compiler: GNU 8.3.0 (mpif90) + +DEBUG is ENABLED +REPRO is disabled +32BIT is disabled +OPENMP is ENABLED +AVX2 is disabled +INLINE_POST is disabled + + +Selected physics package: gfs + -- Detecting OpenMP flags for GNU C compiler: -fopenmp -- Detecting OpenMP flags for GNU C++ compiler: -fopenmp -- Detecting OpenMP flags for GNU Fortran compiler: -fopenmp @@ -13551,22559 +4935,31318 @@ Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMS -- Detecting OpenMP flags for GNU C++ compiler: -fopenmp -- Detecting OpenMP flags for GNU Fortran compiler: -fopenmp -- Enable OpenMP support for C/C++/Fortran compiler -INFOGot SCHEMES from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90 +INFOGot CCPP_SCHEMES from environment variable: /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfpbltq.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfscuq.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/satmedmfvdifq.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninshoc.f +INFOGot CAPS from environment variable: /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_stochastics_cap.F90 +Force 64 bits in CCPP_layer -- Configuring done -- Generating done -CMake Warning: - Manually-specified variables were not used by the project: - - LEGACY_INTEL - - --- Build files have been written to: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". +-- Build files have been written to: /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/tests/build_fv3_2 ++ make -j 3 +Scanning dependencies of target fv3cpl Scanning dependencies of target ccpp -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -g -fopenmp -fopenmp -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_dl.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -g -fopenmp -fopenmp -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_fields_idx.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -g -fopenmp -fopenmp -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_utils.c -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -g -fopenmp -fopenmp -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_xml.c -[ 8%] Linking Fortran static library libccpp.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar qc libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 9%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -g -fopenmp -fopenmp -o CMakeFiles/test_fields.dir/test_fields.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests/test_fields.c -[ 9%] Linking C executable test_fields -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -O2 -fPIC -g -fopenmp -fopenmp CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lgfortran -lgfortran -lquadmath -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -[ 10%] Linking Fortran executable test_check -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE CMakeFiles/test_check.dir/test_check.f90.o -o test_check ../libccpp.a /usr/lib64/libxml2.so -ldl -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 11%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -[ 12%] Linking Fortran executable test_init_finalize -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize ../libccpp.a /usr/lib64/libxml2.so -ldl -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". +[ 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/framework/src/ccpp.F90:56:61: + + subroutine ccpp_init(suitename, cdata, ierr, cdata_target, is_filename) + 1 +Warning: Unused dummy argument ‘cdata_target’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/framework/src/ccpp.F90:64:44: + + character(len=256) :: filename_local + 1 +Warning: Unused variable ‘filename_local’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/framework/src/ccpp.F90:56:74: + + subroutine ccpp_init(suitename, cdata, ierr, cdata_target, is_filename) + 1 +Warning: Unused dummy argument ‘is_filename’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/framework/src/ccpp.F90:63:47: + + logical :: is_filename_local + 1 +Warning: Unused variable ‘is_filename_local’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/framework/src/ccpp.F90:56:34: + + subroutine ccpp_init(suitename, cdata, ierr, cdata_target, is_filename) + 1 +Warning: Unused dummy argument ‘suitename’ at (1) [-Wunused-dummy-argument] +[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o +[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp_parameter.F90:120:42: + + integer(LONG_KIND), parameter :: DOMAIN_ID_BASE=Z'0000000100000000' ! Workaround for 64bit init problem + 1 +Warning: Conversion from ‘INTEGER(16)’ to ‘INTEGER(8)’ at (1) [-Wconversion] +[ 1%] Linking Fortran static library libccpp.a +[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o +[ 2%] Built target ccpp +[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cap_cpl.F90:64:50: + + type(ESMF_ArraySpec) :: arrayspec + 1 +Warning: Unused variable ‘arrayspec’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cap_cpl.F90:65:42: + + integer :: i, localrc + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +[ 2%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/drifters/drifters_io.F90:225:42: + + attname = 'unit_'//adjustl(attname) + 1 +Warning: CHARACTER expression will be truncated in assignment (128/133) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/drifters/drifters_io.F90:201:42: + + attname = 'name_'//adjustl(attname) + 1 +Warning: CHARACTER expression will be truncated in assignment (128/133) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/drifters/drifters_io.F90:177:42: + + attname = 'unit_'//adjustl(attname) + 1 +Warning: CHARACTER expression will be truncated in assignment (128/133) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/drifters/drifters_io.F90:153:42: + + attname = 'name_'//adjustl(attname) + 1 +Warning: CHARACTER expression will be truncated in assignment (128/133) at (1) [-Wcharacter-truncation] Scanning dependencies of target ccppphys -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fno-range-check -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -ffree-line-length-none -fdefault-real-8 -ffree-form -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -ffree-form -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_physics_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o.provides.build -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1997:72: - - & del(i,:), Sw, Sw1) +[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o +[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/random_numbers/MersenneTwister.F90:82:35: + + UMASK = -2147483648_8, & ! most significant w-r bits (0x80000000UL) + 1 +Warning: Conversion from ‘INTEGER(8)’ to ‘INTEGER(4)’ at (1) [-Wconversion] +[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o +[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mersenne_twister.f:219:30: + + subroutine random_seed(size,put,get,stat) + 1 +Warning: ‘random_seed’ declared at (1) may shadow the intrinsic of the same name. In order to call the intrinsic, explicit INTRINSIC declarations may be required. [-Wintrinsic-shadow] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mersenne_twister.f:259:38: + + get(n+3:nrest)=transfer(stat%gset,get,nrest-(n+3)+1) + 1 +Warning: Intrinsic TRANSFER at (1) has partly undefined result: source size 8 < result size 16 [-Wsurprising] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mersenne_twister.f:265:38: + + get(n+3:nrest)=transfer(sstat%gset,get,nrest-(n+3)+1) + 1 +Warning: Intrinsic TRANSFER at (1) has partly undefined result: source size 8 < result size 16 [-Wsurprising] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/sat_vapor_pres/sat_vapor_pres_k.F90:1048:52: + + subroutine compute_mrs_k_0d (temp, press, eps, zvir, mrs, nbad, & + 1 +Warning: Unused dummy argument ‘zvir’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/sat_vapor_pres/sat_vapor_pres_k.F90:965:52: + + subroutine compute_mrs_k_1d (temp, press, eps, zvir, mrs, nbad, & + 1 +Warning: Unused dummy argument ‘zvir’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/sat_vapor_pres/sat_vapor_pres_k.F90:880:52: + + subroutine compute_mrs_k_2d (temp, press, eps, zvir, mrs, nbad, & + 1 +Warning: Unused dummy argument ‘zvir’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/sat_vapor_pres/sat_vapor_pres_k.F90:792:52: + + subroutine compute_mrs_k_3d (temp, press, eps, zvir, mrs, nbad, & + 1 +Warning: Unused dummy argument ‘zvir’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:24: + + datar42d = data_a2oi(:,:,n) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: + + datar42d = data_a2oi(:,:,n) + +Warning: ‘datar42d.data’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.offset’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[0].lbound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[0].ubound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[1].lbound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[1].ubound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[0].lbound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[0].ubound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[0].lbound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[0].ubound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[0].ubound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[0].lbound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[0].lbound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[0].lbound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[0].ubound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[0].ubound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[0].lbound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[0].ubound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[1].lbound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[1].ubound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[1].lbound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[1].ubound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[1].ubound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[1].lbound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[1].lbound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[1].lbound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[1].ubound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[1].ubound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[1].lbound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: Warning: ‘datar42d.dim[1].ubound’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: + + datar42d = data_a2oi(:,:,n) + +Warning: ‘datar42d.dim[0].stride’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/cpl/module_cplfields.F90:224:0: + + datar42d = data_a2oi(:,:,n) + +Warning: ‘datar42d.dim[1].stride’ may be used uninitialized in this function [-Wmaybe-uninitialized] +[ 3%] Linking Fortran static library libfv3cpl.a +[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o +[ 3%] Built target fv3cpl +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_radar.F90:270:56: + + meltratio_outside, m_w, m_i, lambda, C_back, & + 1 +Warning: Unused dummy argument ‘lambda’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_radar.F90:284:54: + + DOUBLE PRECISION:: D_large, D_g, rhog, x_w, xw_a, fm, fmgrenz, & + 1 +Warning: Unused variable ‘xw_a’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_radar.F90:203:44: + + DOUBLE PRECISION:: alpha,lambdas,sigma,nenner + 1 +Warning: Unused variable ‘sigma’ declared at (1) [-Wunused-variable] +[ 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/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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:604:1: + + hcpct , & !in + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1450:1: + + hcpct , & !in + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1848:1: + + imelt(1) = 1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1852:1: + + imelt(1) = 0 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1899:1: + + heatr(j) = (stc(j)-tfrz)/fact(j) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1901:1: + + if (j .ne. k .and. stc(k) < tfrz .and. heatr(j) > 0.1) then + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1902:1: + + heatr(k) = (stc(k)-tfrz)/fact(k) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1903:1: + + if (abs(heatr(k)) > heatr(j)) then ! layer absorbs all + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1904:1: + + heatr(k) = heatr(k) + heatr(j) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1905:1: + + stc(k) = tfrz + heatr(k)*fact(k) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1906:1: + + heatr(j) = 0.0 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1908:1: + + heatr(j) = heatr(j) + heatr(k) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1909:1: + + heatr(k) = 0.0 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1910:1: + + stc(k) = tfrz + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1912:1: + + end if + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1913:1: + + end do + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1924:1: + + heatr(j) = (stc(j)-tfrz)/fact(j) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1926:1: + + if (j .ne. k .and. stc(k) > tfrz .and. heatr(j) < -0.1) then + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1927:1: + + heatr(k) = (stc(k)-tfrz)/fact(k) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1928:1: + + if (heatr(k) > abs(heatr(j))) then ! layer absorbs all + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1929:1: + + heatr(k) = heatr(k) + heatr(j) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1930:1: + + stc(k) = tfrz + heatr(k)*fact(k) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1931:1: + + heatr(j) = 0.0 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1933:1: + + heatr(j) = heatr(j) + heatr(k) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1934:1: + + heatr(k) = 0.0 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1935:1: + + stc(k) = tfrz + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1937:1: + + end if + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1938:1: + + end do + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1949:1: + + heatr(j) = (stc(j)-tfrz)/fact(j) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1952:1: + + if (j .ne. k .and. mice(k) > 0. .and. xm(j) > 0.1) then + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1953:1: + + if (mice(k) > xm(j)) then ! layer absorbs all + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1954:1: + + mice(k) = mice(k) - xm(j) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1955:1: + + xmf = xmf + hfus * xm(j)/dt + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1956:1: + + stc(k) = tfrz + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1957:1: + + xm(j) = 0.0 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1959:1: + + xm(j) = xm(j) - mice(k) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1960:1: + + xmf = xmf + hfus * mice(k)/dt + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1961:1: + + mice(k) = 0.0 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1962:1: + + stc(k) = tfrz + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1965:1: + + end if + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1966:1: + + end do + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1967:1: + + heatr(j) = xm(j)*hfus/dt + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1978:1: + + heatr(j) = (stc(j)-tfrz)/fact(j) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1981:1: + + if (j .ne. k .and. mliq(k) > 0. .and. xm(j) < -0.1) then + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1982:1: + + if (mliq(k) > abs(xm(j))) then ! layer absorbs all + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1983:1: + + mice(k) = mice(k) - xm(j) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1984:1: + + xmf = xmf + hfus * xm(j)/dt + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1985:1: + + stc(k) = tfrz + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1986:1: + + xm(j) = 0.0 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1988:1: + + xm(j) = xm(j) + mliq(k) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1989:1: + + xmf = xmf - hfus * mliq(k)/dt + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1990:1: + + mice(k) = wmass0(k) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1991:1: + + stc(k) = tfrz + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1994:1: + + end if + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1995:1: + + end do + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1996:1: + + heatr(j) = xm(j)*hfus/dt + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:2281:1: + + ponding1 ,ponding2 , & !inout + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:292:1: + + prcpconv, prcpnonc, prcpshcv, prcpsnow, prcpgrpl, prcphail, & ! in : forcing + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:303:1: + + z0wrf , & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:311:1: + + shg , shc , shb , evg , evb , ghv , & ! out : + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:312:1: + + ghb , irg , irc , irb , tr , evc , & ! out : + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:313:1: + + chleaf , chuc , chv2 , chb2 , fpice , pahv , & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:645:1: + + fwet ,cmc ) !out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:697:1: + + qsnow ,qrain ,snowhin,latheav,latheag,frozen_canopy,frozen_ground, & !in mb + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:766:1: + + swdown ,bdfall ,rain ,snow ,fp , fpice ,prcp ) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:837:1: + + qprecl = prcpnonc + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:890:1: + + fpice = min(1.0,prcp_frozen/prcp) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:891:1: + + fpice = max(0.0,fpice) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:892:1: + + bdfall = bdfall*(prcpsnow/prcp_frozen) + rho_grpl*(prcpgrpl/prcp_frozen) + & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:893:1: + + rho_hail*(prcphail/prcp_frozen) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:894:1: + + else + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:895:1: + + fpice = 0.0 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1009:1: + + pahv ,pahg ,pahb ,qrain ,qsnow ,snowhin, & !out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1010:1: + + fwet ,cmc ) !out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1112:1: + + if(canliq > 0.) then ! for case of canopy getting buried + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1113:1: + + qdripr = qdripr + canliq/dt + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1114:1: + + canliq = 0.0 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1115:1: + + end if + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1139:1: + + icedrip = max(0.,canice) * (fv+ft) !mb: removed /dt + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1147:1: + + if(canice > 0.) then ! for case of canopy getting buried + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1148:1: + + qdrips = qdrips + canice/dt + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1149:1: + + canice = 0.0 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1150:1: + + end if + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1180:1: + + pahb = pahb / (1.0-fveg) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1184:1: + + pahv = 0.0 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1186:1: + + pahb = 0.0 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1437:1: + + z0wrf , & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1456:1: + + shg,shc,shb,evg,evb,ghv,ghb,irg,irc,irb,tr,evc,chleaf,chuc,chv2,chb2 ) !out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:2067:57: + + real :: qsdew !soil surface dew rate [mm/s] + 1 +Warning: Unused variable ‘qsdew’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:2066:57: + + real :: qseva !soil surface evap rate [mm/s] + 1 +Warning: Unused variable ‘qseva’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1891:1: + + frozen_canopy = .false. + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1894:1: + + frozen_canopy = .true. + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1900:1: + + frozen_ground = .false. + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1903:1: + + frozen_ground = .true. + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1988:1: + + pah = fveg * pahg + (1.0 - fveg) * pahb + pahv + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1996:1: + + z0wrf = z0m + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:2009:1: + + pah = pahb + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:2019:1: + + z0wrf = z0mg + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:1480:54: + + integer :: iz + 1 +Warning: Unused variable ‘iz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90:275:23: + + character*256 message + 1 +Warning: Unused variable ‘message’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3148:1: + + denfveg = -log(max(1.0-fveg,0.01))/(pai*parameters%rc**2) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3750:1: + + if (tv > tfrz) then + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3752:1: + + else + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3754:1: + + end if + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:5733:1: + + qsnow ,qrain ,snowhin,latheav,latheag,frozen_canopy,frozen_ground, & !in mb + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:6353:1: + + if(snice(j) >= 0.) then + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:6357:1: + + else ! snice over-sublimated earlier + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:6358:1: + + ponding1 = snliq(j) + snice(j) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:6359:1: + + if(ponding1 < 0.) then ! if snice and snliq sublimates remove from soil + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:6360:1: + + sice(1) = max(0.0,sice(1)+ponding1/(dzsnso(1)*1000.)) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:6362:1: + + end if + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:6365:1: + + end if + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:959:11: + + it1 = t + 0.5 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:8118:28: + + dzsnso ,stc ,psn ,troot ,tv , & !in + 1 +Warning: Unused dummy argument ‘dzsnso’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:8120:50: + + lat ,iloc ,jloc ,fveg , & !in + 1 +Warning: Unused dummy argument ‘fveg’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:8120:34: + + lat ,iloc ,jloc ,fveg , & !in + 1 +Warning: Unused dummy argument ‘iloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:8120:42: + + lat ,iloc ,jloc ,fveg , & !in + 1 +Warning: Unused dummy argument ‘jloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:8120:25: + + lat ,iloc ,jloc ,fveg , & !in + 1 +Warning: Unused dummy argument ‘lat’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:8222:34: + + real :: stovrc !stem turnover coefficient [1/s] + 1 +Warning: Unused variable ‘stovrc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:8118:51: + + dzsnso ,stc ,psn ,troot ,tv , & !in + 1 +Warning: Unused dummy argument ‘troot’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:8230:35: + + real :: vegfrac + 1 +Warning: Unused variable ‘vegfrac’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:8005:41: + + foln ,btran ,apar ,fveg ,igs , & !in + 1 +Warning: Unused dummy argument ‘apar’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:8006:32: + + troot ,ist ,lat ,iloc ,jloc , & !in + 1 +Warning: Unused dummy argument ‘ist’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:8004:55: + + dzsnso ,stc ,smc ,tv ,tg ,psn , & !in + 1 +Warning: Unused dummy argument ‘tg’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:7863:68: + + subroutine shallowwatertable (parameters,nsnow ,nsoil ,zsoil, dt , & !in + 1 +Warning: Unused dummy argument ‘dt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:7864:44: + + dzsnso ,smceq ,iloc ,jloc , & !in + 1 +Warning: Unused dummy argument ‘iloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:7864:52: + + dzsnso ,smceq ,iloc ,jloc , & !in + 1 +Warning: Unused dummy argument ‘jloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:7865:60: + + smc ,wtd ,smcwtd ,rech, qdrain ) !inout + 1 +Warning: Unused dummy argument ‘qdrain’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:7717:54: + + real :: dzsum !cumulative depth above water table [m] + 1 +Warning: Unused variable ‘dzsum’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:7676:53: + + stc ,wcnd ,fcrmax ,iloc ,jloc , & !in + 1 +Warning: Unused dummy argument ‘iloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:7676:61: + + stc ,wcnd ,fcrmax ,iloc ,jloc , & !in + 1 +Warning: Unused dummy argument ‘jloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:7676:28: + + stc ,wcnd ,fcrmax ,iloc ,jloc , & !in + 1 +Warning: Unused dummy argument ‘stc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:7612:17: + + real :: vkwgt + 1 +Warning: Unused variable ‘vkwgt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:7483:32: + + sice ,iloc ,jloc ,zwt , & !in + 1 +Warning: Unused dummy argument ‘iloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:7483:40: + + sice ,iloc ,jloc ,zwt , & !in + 1 +Warning: Unused dummy argument ‘jloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:7484:31: + + sh2o ,smc ,ai ,bi ,ci , & !inout + 1 +Warning: Unused dummy argument ‘smc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:7524:51: + + real :: stot + 1 +Warning: Unused variable ‘stot’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:7348:47: + + subroutine srt (parameters,nsoil ,zsoil ,dt ,pddum ,etrani , & !in + 1 +Warning: Unused dummy argument ‘dt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:7350:38: + + sicemax,fcrmax ,iloc ,jloc ,smcwtd , & !in + 1 +Warning: Unused dummy argument ‘iloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:7350:46: + + sicemax,fcrmax ,iloc ,jloc ,smcwtd , & !in + 1 +Warning: Unused dummy argument ‘jloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:6931:54: + + sh2o ,smc ,zwt ,vegtyp ,& !inout + 1 +Warning: Unused dummy argument ‘vegtyp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:6670:58: + + snliq ,zsoil ,imelt ,ficeold,iloc , jloc , & !in + 1 +Warning: Unused dummy argument ‘iloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:6670:67: + + snliq ,zsoil ,imelt ,ficeold,iloc , jloc , & !in + 1 +Warning: Unused dummy argument ‘jloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:6669:32: + + subroutine compact (parameters,nsnow ,nsoil ,dt ,stc ,snice , & !in + 1 +Warning: Unused dummy argument ‘parameters’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:6671:43: + + isnow ,dzsnso ,zsnso ) !inout + 1 +Warning: Unused dummy argument ‘zsnso’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:6670:35: + + snliq ,zsoil ,imelt ,ficeold,iloc , jloc , & !in + 1 +Warning: Unused dummy argument ‘zsoil’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:6614:29: + + subroutine combo(parameters,dz, wliq, wice, t, dz2, wliq2, wice2, t2) + 1 +Warning: Unused dummy argument ‘parameters’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:6298:53: + + subroutine combine (parameters,nsnow ,nsoil ,iloc ,jloc , & !in + 1 +Warning: Unused dummy argument ‘iloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:6298:61: + + subroutine combine (parameters,nsnow ,nsoil ,iloc ,jloc , & !in + 1 +Warning: Unused dummy argument ‘jloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:6228:35: + + sfctmp ,iloc ,jloc , & !in + 1 +Warning: Unused dummy argument ‘iloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:6228:43: + + sfctmp ,iloc ,jloc , & !in + 1 +Warning: Unused dummy argument ‘jloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:6227:33: + + subroutine snowfall (parameters,nsoil ,nsnow ,dt ,qsnow ,snowhin , & !in + 1 +Warning: Unused dummy argument ‘parameters’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:6138:17: + + integer :: iz,i + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:6009:31: + + real :: canmas !total canopy mass (kg/m2) + 1 +Warning: Unused variable ‘canmas’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:5962:43: + + esai ,tg ,fveg ,iloc , jloc , & !in + 1 +Warning: Unused dummy argument ‘fveg’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:5962:51: + + esai ,tg ,fveg ,iloc , jloc , & !in + 1 +Warning: Unused dummy argument ‘iloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:5962:60: + + esai ,tg ,fveg ,iloc , jloc , & !in + 1 +Warning: Unused dummy argument ‘jloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:5962:33: + + esai ,tg ,fveg ,iloc , jloc , & !in + 1 +Warning: Unused dummy argument ‘tg’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:5960:40: + + subroutine canwater (parameters,vegtyp ,dt , & !in + 1 +Warning: Unused dummy argument ‘vegtyp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:5732:30: + + bdfall ,fp ,rain ,snow, & !in mb/an: v3.7 + 1 +Warning: Unused dummy argument ‘fp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:5733:45: + + qsnow ,qrain ,snowhin,latheav,latheag,frozen_canopy,frozen_ground, & !in mb + 1 +Warning: Unused dummy argument ‘latheag’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:5733:37: + + qsnow ,qrain ,snowhin,latheav,latheag,frozen_canopy,frozen_ground, & !in mb + 1 +Warning: Unused dummy argument ‘latheav’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:5729:50: + + vv ,fcev ,fctr ,qprecc ,qprecl ,elai , & !in + 1 +Warning: Unused dummy argument ‘qprecc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:5729:58: + + vv ,fcev ,fctr ,qprecc ,qprecl ,elai , & !in + 1 +Warning: Unused dummy argument ‘qprecl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:5732:40: + + bdfall ,fp ,rain ,snow, & !in mb/an: v3.7 + 1 +Warning: Unused dummy argument ‘rain’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:5732:48: + + bdfall ,fp ,rain ,snow, & !in mb/an: v3.7 + 1 +Warning: Unused dummy argument ‘snow’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:5728:73: + + subroutine water (parameters,vegtyp ,nsnow ,nsoil ,imelt ,dt ,uu , & !in + 1 +Warning: Unused dummy argument ‘uu’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:5729:22: + + vv ,fcev ,fctr ,qprecc ,qprecl ,elai , & !in + 1 +Warning: Unused dummy argument ‘vv’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:5577:18: + + errmsg,errflg) + 1 +Warning: Unused dummy argument ‘errflg’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:5351:40: + + dzsnso ,hcpct ,ist ,iloc ,jloc , & !in + 1 +Warning: Unused dummy argument ‘hcpct’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:5351:57: + + dzsnso ,hcpct ,ist ,iloc ,jloc , & !in + 1 +Warning: Unused dummy argument ‘iloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:5351:66: + + dzsnso ,hcpct ,ist ,iloc ,jloc , & !in + 1 +Warning: Unused dummy argument ‘jloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:5228:30: + + subroutine hstep (parameters,nsnow ,nsoil ,isnow ,dt , & + 1 +Warning: Unused dummy argument ‘parameters’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:5126:53: + + stc ,tbot ,zbot ,dt , & + 1 +Warning: Unused dummy argument ‘dt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:5167:54: + + real, dimension(-nsnow+1:nsoil) :: dz + 1 +Warning: Unused variable ‘dz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:5125:28: + + subroutine hrt (parameters,nsnow ,nsoil ,isnow ,zsnso , & + 1 +Warning: Unused dummy argument ‘parameters’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4994:46: + + stc ,errmsg ,errflg) !inout + 1 +Warning: Unused dummy argument ‘errflg’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4989:36: + + subroutine tsnosoi (parameters,ice ,nsoil ,nsnow ,isnow ,ist , & !in + 1 +Warning: Unused dummy argument ‘ice’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4991:25: + + sag ,dt ,snowh ,dzsnso , & !in + 1 +Warning: Unused dummy argument ‘sag’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4957:36: + + subroutine calhum(parameters,sfctmp, sfcprs, q2sat, dqsdt2) + 1 +Warning: Unused dummy argument ‘parameters’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4873:39: + + rc ,psn ,iloc ,jloc ) !out + 1 +Warning: Unused dummy argument ‘iloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4873:47: + + rc ,psn ,iloc ,jloc ) !out + 1 +Warning: Unused dummy argument ‘jloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4738:73: + + subroutine stomata (parameters,vegtyp ,mpe ,apar ,foln ,iloc , jloc, & !in + 1 +Warning: Unused dummy argument ‘iloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4738:83: + + subroutine stomata (parameters,vegtyp ,mpe ,apar ,foln ,iloc , jloc, & !in + 1 +Warning: Unused dummy argument ‘jloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4806:15: + + real :: t + 1 +Warning: Unused variable ‘t’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4738:39: + + subroutine stomata (parameters,vegtyp ,mpe ,apar ,foln ,iloc , jloc, & !in + 1 +Warning: Unused dummy argument ‘vegtyp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4482:33: + + zlm ,iloc ,jloc , & !in + 1 +Warning: Unused dummy argument ‘iloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4513:23: + + integer ilech, itr + 1 +Warning: Unused variable ‘itr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4482:41: + + zlm ,iloc ,jloc , & !in + 1 +Warning: Unused dummy argument ‘jloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4304:33: + + & mpe ,iloc ,jloc , & !in + 1 +Warning: Unused dummy argument ‘iloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4304:41: + + & mpe ,iloc ,jloc , & !in + 1 +Warning: Unused dummy argument ‘jloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4302:31: + + subroutine sfcdif1(parameters,iter ,sfctmp ,rhoair ,h ,qair , & !in + 1 +Warning: Unused dummy argument ‘parameters’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4359:34: + + real :: tmp1,tmp2,tmp3,tmp4,tmp5 !temporary calculation + 1 +Warning: Unused variable ‘tmp4’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4359:39: + + real :: tmp1,tmp2,tmp3,tmp4,tmp5 !temporary calculation + 1 +Warning: Unused variable ‘tmp5’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4204:47: + + tv ,mozg ,fhg ,iloc ,jloc , & !inout + 1 +Warning: Unused dummy argument ‘iloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4204:55: + + tv ,mozg ,fhg ,iloc ,jloc , & !inout + 1 +Warning: Unused dummy argument ‘jloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4204:21: + + tv ,mozg ,fhg ,iloc ,jloc , & !inout + 1 +Warning: Unused dummy argument ‘tv’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4203:49: + + z0h ,fv ,cwp ,vegtyp ,mpe , & !in + 1 +Warning: Unused dummy argument ‘vegtyp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4005:14: + + real :: ch2b !exchange coefficient for 2m temp. + 1 +Warning: Unused variable ‘ch2b’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3985:12: + + real :: cw !water vapor exchange coefficient + 1 +Warning: Unused variable ‘cw’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3877:64: + + subroutine bare_flux (parameters,nsnow ,nsoil ,isnow ,dt ,sag , & !in + 1 +Warning: Unused dummy argument ‘dt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3889:44: + + ghb ,t2mb ,dx ,dz8w ,ivgtyp , & !out + 1 +Warning: Unused dummy argument ‘dx’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3889:55: + + ghb ,t2mb ,dx ,dz8w ,ivgtyp , & !out + 1 +Warning: Unused dummy argument ‘dz8w’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4013:12: + + real :: e1 + 1 +Warning: Unused variable ‘e1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4011:15: + + real :: estg2 !saturation vapor pressure at 2m (pa) + 1 +Warning: Unused variable ‘estg2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3979:14: + + real :: fgev !ground evaporation heat flux (w/m2)[+ to atm] + 1 +Warning: Unused variable ‘fgev’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3977:14: + + real :: fira !total net longwave rad (w/m2) [+ to atm] + 1 +Warning: Unused variable ‘fira’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3981:14: + + real :: fire !emitted ir (w/m2) + 1 +Warning: Unused variable ‘fire’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3978:13: + + real :: fsh !total sensible heat flux (w/m2) [+ to atm] + 1 +Warning: Unused variable ‘fsh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3889:66: + + ghb ,t2mb ,dx ,dz8w ,ivgtyp , & !out + 1 +Warning: Unused dummy argument ‘ivgtyp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3993:13: + + real :: mol !monin-obukhov length (m) + 1 +Warning: Unused variable ‘mol’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3882:62: + + gamma ,rhsur ,iloc ,jloc ,q2 ,pahb , & !in + 1 +Warning: Unused dummy argument ‘q2’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3890:26: + + qc ,qsfc ,psfc , & !in + 1 +Warning: Unused dummy argument ‘qc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4002:15: + + real :: rahb2 !aerodynamic resistance for sensible heat 2m (s/m) + 1 +Warning: Unused variable ‘rahb2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4003:15: + + real :: rawb2 !aerodynamic resistance for water vapor 2m (s/m) + 1 +Warning: Unused variable ‘rawb2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3989:12: + + real :: rb !bulk leaf boundary layer resistance (s/m) + 1 +Warning: Unused variable ‘rb’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3891:30: + + sfcprs ,q2b ,ehb2 ) !in + 1 +Warning: Unused dummy argument ‘sfcprs’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3980:15: + + real :: ssoil !soil heat flux (w/m2) [+ to soil] + 1 +Warning: Unused variable ‘ssoil’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3983:13: + + real :: tah !"surface" temperature at height z0h+zpd (k) + 1 +Warning: Unused variable ‘tah’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3975:14: + + real :: taux !wind stress: e-w (n/m2) + 1 +Warning: Unused variable ‘taux’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3976:14: + + real :: tauy !wind stress: n-s (n/m2) + 1 +Warning: Unused variable ‘tauy’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4008:14: + + real :: thgh !potential ground temp + 1 +Warning: Unused variable ‘thgh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4007:16: + + real :: thvair !virtual potential air temp + 1 +Warning: Unused variable ‘thvair’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3982:14: + + real :: trad !radiative temperature (k) + 1 +Warning: Unused variable ‘trad’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3968:14: + + real :: u10b !10 m wind speed in eastward dir (m/s) + 1 +Warning: Unused variable ‘u10b’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3969:14: + + real :: v10b !10 m wind speed in eastward dir (m/s) + 1 +Warning: Unused variable ‘v10b’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:4012:19: + + integer :: vegtyp !vegetation type set to isbarren + 1 +Warning: Unused variable ‘vegtyp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3970:14: + + real :: wspd + 1 +Warning: Unused variable ‘wspd’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3470:13: + + real :: atr,ctr !coefficients for tr as function of esat[ts] + 1 +Warning: Unused variable ‘atr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3514:14: + + real :: ch2v !exchange coefficient for 2m over vegetation. + 1 +Warning: Unused variable ‘ch2v’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3446:12: + + real :: cw !water vapor exchange coefficient + 1 +Warning: Unused variable ‘cw’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3317:34: + + ch ,dx ,dz8w ,errmsg ,errflg , & !inout + 1 +Warning: Unused dummy argument ‘dx’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3317:45: + + ch ,dx ,dz8w ,errmsg ,errflg , & !inout + 1 +Warning: Unused dummy argument ‘dz8w’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3518:12: + + real :: e1 + 1 +Warning: Unused variable ‘e1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3516:14: + + real :: eah2 !2m vapor pressure over canopy + 1 +Warning: Unused variable ‘eah2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3525:14: + + integer :: k !index + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3497:12: + + real :: kh !turbulent transfer coefficient, sensible heat, (m2/s) + 1 +Warning: Unused variable ‘kh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3312:48: + + rsurf ,latheav ,latheag ,parsun ,parsha ,igs , & !in + 1 +Warning: Unused dummy argument ‘latheag’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3462:13: + + real :: mol !monin-obukhov length (m) + 1 +Warning: Unused variable ‘mol’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3314:52: + + rhsur ,iloc ,jloc ,q2 ,pahv ,pahg , & !in + 1 +Warning: Unused dummy argument ‘q2’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3324:25: + + qc ,qsfc ,psfc , & !in + 1 +Warning: Unused dummy argument ‘qc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3511:15: + + real :: rahc2 !aerodynamic resistance for sensible heat (s/m) + 1 +Warning: Unused variable ‘rahc2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3512:15: + + real :: rawc2 !aerodynamic resistance for water vapor (s/m) + 1 +Warning: Unused variable ‘rawc2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3510:14: + + real :: thah + 1 +Warning: Unused variable ‘thah’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3507:16: + + real :: thstar !surface exchange at 2m + 1 +Warning: Unused variable ‘thstar’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3509:16: + + real :: thvair + 1 +Warning: Unused variable ‘thvair’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3441:14: + + real :: u10v !10 m wind speed in eastward dir (m/s) + 1 +Warning: Unused variable ‘u10v’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3442:14: + + real :: v10v !10 m wind speed in eastward dir (m/s) + 1 +Warning: Unused variable ‘v10v’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3303:73: + + subroutine vege_flux(parameters,nsnow ,nsoil ,isnow ,vegtyp ,veg , & !in + 1 +Warning: Unused dummy argument ‘veg’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3443:14: + + real :: wspd + 1 +Warning: Unused variable ‘wspd’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3120:74: + + real :: freveg,frebar,ftdveg,ftiveg,ftdbar,ftibar + 1 +Warning: Unused variable ‘ftdbar’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3120:60: + + real :: freveg,frebar,ftdveg,ftiveg,ftdbar,ftibar + 1 +Warning: Unused variable ‘ftdveg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3120:81: + + real :: freveg,frebar,ftdveg,ftiveg,ftdbar,ftibar + 1 +Warning: Unused variable ‘ftibar’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3120:67: + + real :: freveg,frebar,ftdveg,ftiveg,ftdbar,ftibar + 1 +Warning: Unused variable ‘ftiveg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3054:54: + + tau ,fveg ,ist ,iloc ,jloc , & !in + 1 +Warning: Unused dummy argument ‘iloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3054:44: + + tau ,fveg ,ist ,iloc ,jloc , & !in + 1 +Warning: Unused dummy argument ‘ist’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3054:63: + + tau ,fveg ,ist ,iloc ,jloc , & !in + 1 +Warning: Unused dummy argument ‘jloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3121:46: + + real :: thetaz + 1 +Warning: Unused variable ‘thetaz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:3052:58: + + subroutine twostream (parameters,ib ,ic ,vegtyp ,cosz ,vai , & !in + 1 +Warning: Unused dummy argument ‘vegtyp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:2987:56: + + subroutine groundalb (parameters,nsoil ,nband ,ice ,ist , & !in + 1 +Warning: Unused dummy argument ‘ice’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:2989:37: + + tg ,iloc ,jloc , & !in + 1 +Warning: Unused dummy argument ‘iloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:2989:46: + + tg ,iloc ,jloc , & !in + 1 +Warning: Unused dummy argument ‘jloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:2958:15: + + integer :: ib !waveband class + 1 +Warning: Unused variable ‘ib’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:2933:83: + + subroutine snowalb_class (parameters,nband,qsnow,dt,alb,albold,albsnd,albsni,iloc,jloc) + 1 +Warning: Unused dummy argument ‘iloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:2933:88: + + subroutine snowalb_class (parameters,nband,qsnow,dt,alb,albold,albsnd,albsni,iloc,jloc) + 1 +Warning: Unused dummy argument ‘jloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:2877:48: + + subroutine snowalb_bats (parameters,nband,fsno,cosz,fage,albsnd,albsni) + 1 +Warning: Unused dummy argument ‘fsno’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:2897:15: + + integer :: ib !waveband class + 1 +Warning: Unused variable ‘ib’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:2877:37: + + subroutine snowalb_bats (parameters,nband,fsno,cosz,fage,albsnd,albsni) + 1 +Warning: Unused dummy argument ‘parameters’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:2699:52: + + albgri ,albd ,albi ,iloc ,jloc , & !in + 1 +Warning: Unused dummy argument ‘iloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:2699:61: + + albgri ,albd ,albi ,iloc ,jloc , & !in + 1 +Warning: Unused dummy argument ‘jloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:2696:31: + + subroutine surrad (parameters,mpe ,fsun ,fsha ,elai ,vai , & !in + 1 +Warning: Unused dummy argument ‘parameters’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:2515:42: + + tg ,tv ,snowh ,fsno ,fwet , & !in + 1 +Warning: Unused dummy argument ‘snowh’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:2218:30: + + subroutine csnow (parameters,isnow ,nsnow ,nsoil ,snice ,snliq ,dzsnso , & !in + 1 +Warning: Unused dummy argument ‘parameters’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:2109:28: + + lat ,z0m ,zlvl ,vegtyp , & !in + 1 +Warning: Unused dummy argument ‘lat’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:2108:45: + + smc ,sh2o ,tg ,stc ,ur , & !in + 1 +Warning: Unused dummy argument ‘tg’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:2108:63: + + smc ,sh2o ,tg ,stc ,ur , & !in + 1 +Warning: Unused dummy argument ‘ur’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:2109:58: + + lat ,z0m ,zlvl ,vegtyp , & !in + 1 +Warning: Unused dummy argument ‘vegtyp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:2109:37: + + lat ,z0m ,zlvl ,vegtyp , & !in + 1 +Warning: Unused dummy argument ‘z0m’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:2109:47: + + lat ,z0m ,zlvl ,vegtyp , & !in + 1 +Warning: Unused dummy argument ‘zlvl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1636:58: + + real :: mol !monin-obukhov length (m) + 1 +Warning: Unused variable ‘mol’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1708:52: + + real :: noahmpres + 1 +Warning: Unused variable ‘noahmpres’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1664:58: + + real, dimension(-nsnow+1:nsoil) :: phi !light through water (w/m2) + 1 +Warning: Unused variable ‘phi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1631:57: + + real :: rb !leaf boundary layer resistance (s/m) + 1 +Warning: Unused variable ‘rb’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1303:54: + + real :: fsrvg + 1 +Warning: Unused variable ‘fsrvg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1234:30: + + subroutine error (parameters,swdown ,fsa ,fsr ,fira ,fsh ,fcev , & + 1 +Warning: Unused dummy argument ‘parameters’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1239:55: + + sav ,sag ,fsrv ,fsrg ,zwt ,pah , & + 1 +Warning: Unused dummy argument ‘zwt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1004:41: + + subroutine precip_heat (parameters,iloc ,jloc ,vegtyp ,dt ,uu ,vv , & !in + 1 +Warning: Unused dummy argument ‘iloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1004:49: + + subroutine precip_heat (parameters,iloc ,jloc ,vegtyp ,dt ,uu ,vv , & !in + 1 +Warning: Unused dummy argument ‘jloc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:1004:59: + + subroutine precip_heat (parameters,iloc ,jloc ,vegtyp ,dt ,uu ,vv , & !in + 1 +Warning: Unused dummy argument ‘vegtyp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:941:45: + + integer :: k !index + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:910:47: + + lai , sai , troot , elai , esai , igs) + 1 +Warning: Unused dummy argument ‘troot’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:762:28: + + subroutine atm (parameters,sfcprs ,sfctmp ,q2 , & + 1 +Warning: Unused dummy argument ‘parameters’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:474:57: + + real :: bevap !soil water evaporation factor (0 - 1) + 1 +Warning: Unused variable ‘bevap’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90:488:58: + + real :: lathea !latent heat [j/kg] + 1 +Warning: Unused variable ‘lathea’ declared at (1) [-Wunused-variable] +[ 3%] 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/constants/constants.F90:38:18: + + real :: realnumber !< dummy variable to use in HUGE initializations + 1 +Warning: Unused PRIVATE module variable ‘realnumber’ declared at (1) [-Wunused-value] +[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o +[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o +/glade/u/apps/ch/opt/mpt/2.19/include/mpif.h:561:54: + + integer MPI_STATUSES_IGNORE(MPI_STATUS_SIZE,1) + 1 +Warning: Unused PRIVATE module variable ‘mpi_statuses_ignore’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_soil_pre.F90:72:41: + + zs , dzs , & + 1 +Warning: Unused dummy argument ‘dzs’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_soil_pre.F90:77:42: + + ids , ide , jds , jde , kds , kde , & + 1 +Warning: Unused dummy argument ‘ide’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_soil_pre.F90:77:36: + + ids , ide , jds , jde , kds , kde , & + 1 +Warning: Unused dummy argument ‘ids’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_soil_pre.F90:77:54: + + ids , ide , jds , jde , kds , kde , & + 1 +Warning: Unused dummy argument ‘jde’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_soil_pre.F90:77:48: + + ids , ide , jds , jde , kds , kde , & + 1 +Warning: Unused dummy argument ‘jds’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_soil_pre.F90:106:58: + + INTEGER :: i , j , l , lout , lin , lwant , lhave, k + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_soil_pre.F90:77:66: + + ids , ide , jds , jde , kds , kde , & + 1 +Warning: Unused dummy argument ‘kde’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_soil_pre.F90:77:60: + + ids , ide , jds , jde , kds , kde , & + 1 +Warning: Unused dummy argument ‘kds’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_soil_pre.F90:78:66: + + ims , ime , jms , jme , kms , kme , & + 1 +Warning: Unused dummy argument ‘kme’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_soil_pre.F90:78:60: + + ims , ime , jms , jme , kms , kme , & + 1 +Warning: Unused dummy argument ‘kms’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_soil_pre.F90:79:66: + + its , ite , jts , jte , kts , kte ) + 1 +Warning: Unused dummy argument ‘kte’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_soil_pre.F90:79:60: + + its , ite , jts , jte , kts , kte ) + 1 +Warning: Unused dummy argument ‘kts’ at (1) [-Wunused-dummy-argument] +[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1386:0: + + #define MPP_TYPE_ integer(INT_KIND) + +Warning: "MPP_TYPE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1374:0: + + #define MPP_TYPE_ logical(LONG_KIND) + +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1387:0: + + #define MPI_TYPE_ MPI_INTEGER4 + +Warning: "MPI_TYPE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1376:0: + + #define MPI_TYPE_ MPI_INTEGER8 + +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1390:0: + + #define MPP_TYPE_CREATE_ mpp_type_create_int8 + +Warning: "MPP_TYPE_CREATE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1385:0: + + #define MPP_TYPE_CREATE_ mpp_type_create_int4 + +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1391:0: + + #define MPP_TYPE_ integer(LONG_KIND) + +Warning: "MPP_TYPE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1386:0: + + #define MPP_TYPE_ integer(INT_KIND) + +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1392:0: + + #define MPI_TYPE_ MPI_INTEGER8 + +Warning: "MPI_TYPE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1387:0: + + #define MPI_TYPE_ MPI_INTEGER4 + +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1395:0: + + #define MPP_TYPE_CREATE_ mpp_type_create_real4 + +Warning: "MPP_TYPE_CREATE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1390:0: + + #define MPP_TYPE_CREATE_ mpp_type_create_int8 + +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1396:0: + + #define MPP_TYPE_ real(FLOAT_KIND) + +Warning: "MPP_TYPE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1391:0: + + #define MPP_TYPE_ integer(LONG_KIND) + +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1397:0: + + #define MPI_TYPE_ MPI_REAL4 + +Warning: "MPI_TYPE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1392:0: + + #define MPI_TYPE_ MPI_INTEGER8 + +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1400:0: + + #define MPP_TYPE_CREATE_ mpp_type_create_real8 + +Warning: "MPP_TYPE_CREATE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1395:0: + + #define MPP_TYPE_CREATE_ mpp_type_create_real4 + +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1401:0: + + #define MPP_TYPE_ real(DOUBLE_KIND) + +Warning: "MPP_TYPE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1396:0: + + #define MPP_TYPE_ real(FLOAT_KIND) + +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1402:0: + + #define MPI_TYPE_ MPI_REAL8 + +Warning: "MPI_TYPE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1397:0: + + #define MPI_TYPE_ MPI_REAL4 + +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1405:0: + + #define MPP_TYPE_CREATE_ mpp_type_create_logical4 + +Warning: "MPP_TYPE_CREATE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1400:0: + + #define MPP_TYPE_CREATE_ mpp_type_create_real8 + +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1406:0: + + #define MPP_TYPE_ logical(INT_KIND) + +Warning: "MPP_TYPE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1401:0: + + #define MPP_TYPE_ real(DOUBLE_KIND) + +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1407:0: + + #define MPI_TYPE_ MPI_INTEGER4 + +Warning: "MPI_TYPE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1402:0: + + #define MPI_TYPE_ MPI_REAL8 + +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1410:0: + + #define MPP_TYPE_CREATE_ mpp_type_create_logical8 + +Warning: "MPP_TYPE_CREATE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1405:0: + + #define MPP_TYPE_CREATE_ mpp_type_create_logical4 + +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1411:0: + + #define MPP_TYPE_ logical(LONG_KIND) + +Warning: "MPP_TYPE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1406:0: + + #define MPP_TYPE_ logical(INT_KIND) + +note: this is the location of the previous definition +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1412:0: + + #define MPI_TYPE_ MPI_INTEGER8 + +Warning: "MPI_TYPE_" redefined +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:1407:0: + + #define MPI_TYPE_ MPI_INTEGER4 + +note: this is the location of the previous definition +[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o +[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o +[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o +[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/system_clock.h:67:18: + + count = (MPI_WTime()-mpi_count0)*mpi_tick_rate + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/system_clock.h:70:23: + + count_rate = mpi_tick_rate + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:88:91: + + errStr = errStr // tmpStr1 // "_" // tmpstr2 // "d_rmask passed int var with REAL(" + 1 +Warning: CHARACTER expression will be truncated in assignment (512/548) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:90:51: + + errStr = errStr // tmpstr3 // ") mask_val=" + 1 +Warning: CHARACTER expression will be truncated in assignment (512/524) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:88:91: + + errStr = errStr // tmpStr1 // "_" // tmpstr2 // "d_rmask passed int var with REAL(" + 1 +Warning: CHARACTER expression will be truncated in assignment (512/548) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:90:51: + + errStr = errStr // tmpstr3 // ") mask_val=" + 1 +Warning: CHARACTER expression will be truncated in assignment (512/524) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:88:91: + + errStr = errStr // tmpStr1 // "_" // tmpstr2 // "d_rmask passed int var with REAL(" + 1 +Warning: CHARACTER expression will be truncated in assignment (512/548) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:90:51: + + errStr = errStr // tmpstr3 // ") mask_val=" + 1 +Warning: CHARACTER expression will be truncated in assignment (512/524) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:88:91: + + errStr = errStr // tmpStr1 // "_" // tmpstr2 // "d_rmask passed int var with REAL(" + 1 +Warning: CHARACTER expression will be truncated in assignment (512/548) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:90:51: + + errStr = errStr // tmpstr3 // ") mask_val=" + 1 +Warning: CHARACTER expression will be truncated in assignment (512/524) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:88:91: + + errStr = errStr // tmpStr1 // "_" // tmpstr2 // "d_rmask passed int var with REAL(" + 1 +Warning: CHARACTER expression will be truncated in assignment (512/548) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:90:51: + + errStr = errStr // tmpstr3 // ") mask_val=" + 1 +Warning: CHARACTER expression will be truncated in assignment (512/524) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:88:91: + + errStr = errStr // tmpStr1 // "_" // tmpstr2 // "d_rmask passed int var with REAL(" + 1 +Warning: CHARACTER expression will be truncated in assignment (512/548) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:90:51: + + errStr = errStr // tmpstr3 // ") mask_val=" + 1 +Warning: CHARACTER expression will be truncated in assignment (512/524) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:88:91: + + errStr = errStr // tmpStr1 // "_" // tmpstr2 // "d_rmask passed int var with REAL(" + 1 +Warning: CHARACTER expression will be truncated in assignment (512/548) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:90:51: + + errStr = errStr // tmpstr3 // ") mask_val=" + 1 +Warning: CHARACTER expression will be truncated in assignment (512/524) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:88:91: + + errStr = errStr // tmpStr1 // "_" // tmpstr2 // "d_rmask passed int var with REAL(" + 1 +Warning: CHARACTER expression will be truncated in assignment (512/548) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:90:51: + + errStr = errStr // tmpstr3 // ") mask_val=" + 1 +Warning: CHARACTER expression will be truncated in assignment (512/524) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:88:91: + + errStr = errStr // tmpStr1 // "_" // tmpstr2 // "d_rmask passed int var with REAL(" + 1 +Warning: CHARACTER expression will be truncated in assignment (512/548) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:90:51: + + errStr = errStr // tmpstr3 // ") mask_val=" + 1 +Warning: CHARACTER expression will be truncated in assignment (512/524) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:88:91: + + errStr = errStr // tmpStr1 // "_" // tmpstr2 // "d_rmask passed int var with REAL(" + 1 +Warning: CHARACTER expression will be truncated in assignment (512/548) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:90:51: + + errStr = errStr // tmpstr3 // ") mask_val=" + 1 +Warning: CHARACTER expression will be truncated in assignment (512/524) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_util.inc:1125:26: + + event_size = clocks(ct)%events(j)%bytes(i) + 1 +Warning: Possible change of value in conversion from INTEGER(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_util.inc:1011:24: + + total_calls = clock_summary(ct)%event(k)%total_cnts + 1 +Warning: Possible change of value in conversion from INTEGER(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_util.inc:1038:23: + + msg_cnt = clock_summary(ct)%event(k)%msg_size_cnts(j) + 1 +Warning: Possible change of value in conversion from INTEGER(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_util.inc:1058:24: + + total_calls = clock_summary(ct)%event(MAX_EVENT_TYPES)%total_cnts + 1 +Warning: Possible change of value in conversion from INTEGER(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp.F90:1370:27: + + integer :: get_len_nocomm = 0 ! needed for mpp_transmit_nocomm.h + 1 +Warning: Unused PRIVATE module variable ‘get_len_nocomm’ declared at (1) [-Wunused-value] +/glade/u/apps/ch/opt/mpt/2.19/include/mpif.h:561:54: + + integer MPI_STATUSES_IGNORE(MPI_STATUS_SIZE,1) + 1 +Warning: Unused PRIVATE module variable ‘mpi_statuses_ignore’ declared at (1) [-Wunused-value] +[ 7%] 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_gather.h:69:17: + + integer :: cnt, l, nproc, pos, op_root + 1 +Warning: Unused variable ‘cnt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_gather.h:69:17: + + integer :: cnt, l, nproc, pos, op_root + 1 +Warning: Unused variable ‘cnt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_gather.h:69:17: + + integer :: cnt, l, nproc, pos, op_root + 1 +Warning: Unused variable ‘cnt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_gather.h:69:17: + + integer :: cnt, l, nproc, pos, op_root + 1 +Warning: Unused variable ‘cnt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:54:38: + + character(LEN=32) :: tmpStr4,tmpStr5 + 1 +Warning: Unused variable ‘tmpstr5’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:54:38: + + character(LEN=32) :: tmpStr4,tmpStr5 + 1 +Warning: Unused variable ‘tmpstr5’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:54:38: + + character(LEN=32) :: tmpStr4,tmpStr5 + 1 +Warning: Unused variable ‘tmpstr5’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:54:38: + + character(LEN=32) :: tmpStr4,tmpStr5 + 1 +Warning: Unused variable ‘tmpstr5’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:54:38: + + character(LEN=32) :: tmpStr4,tmpStr5 + 1 +Warning: Unused variable ‘tmpstr5’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:54:38: + + character(LEN=32) :: tmpStr4,tmpStr5 + 1 +Warning: Unused variable ‘tmpstr5’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:54:38: + + character(LEN=32) :: tmpStr4,tmpStr5 + 1 +Warning: Unused variable ‘tmpstr5’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:54:38: + + character(LEN=32) :: tmpStr4,tmpStr5 + 1 +Warning: Unused variable ‘tmpstr5’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:54:38: + + character(LEN=32) :: tmpStr4,tmpStr5 + 1 +Warning: Unused variable ‘tmpstr5’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_chksum_int.h:54:38: + + character(LEN=32) :: tmpStr4,tmpStr5 + 1 +Warning: Unused variable ‘tmpstr5’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg_utils.F90:211:44: + + integer(i8), parameter :: limiter_off = int(Z'7FF1111111111111', i8) + 1 +Warning: Conversion from ‘INTEGER(16)’ to ‘INTEGER(8)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_transmit_mpi.h:52:53: + + MPP_TYPE_, allocatable, save :: local_data(:) !local copy used by non-parallel code (no SHMEM or MPI) + 1 +Warning: Unused variable ‘local_data’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_transmit_mpi.h:52:53: + + MPP_TYPE_, allocatable, save :: local_data(:) !local copy used by non-parallel code (no SHMEM or MPI) + 1 +Warning: Unused variable ‘local_data’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_transmit_mpi.h:52:53: + + MPP_TYPE_, allocatable, save :: local_data(:) !local copy used by non-parallel code (no SHMEM or MPI) + 1 +Warning: Unused variable ‘local_data’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg_utils.F90:2401:44: + + lams,n0r,lamr,dtime,pgracs,ngracs,mgncol) + 1 +Warning: Unused dummy argument ‘n0r’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg_utils.F90:2400:78: + + subroutine graupel_rain_riming_snow(pracs,npracs,psacr,qsic,qric,nric,nsic,n0s, & + 1 +Warning: Unused dummy argument ‘n0s’ at (1) [-Wunused-dummy-argument] +[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_transmit_mpi.h:52:53: + + MPP_TYPE_, allocatable, save :: local_data(:) !local copy used by non-parallel code (no SHMEM or MPI) + 1 +Warning: Unused variable ‘local_data’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg_utils.F90:1827:17: + + real(r8) :: tx1, tx2, tx3 + 1 +Warning: Unused variable ‘tx1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg_utils.F90:1827:22: + + real(r8) :: tx1, tx2, tx3 + 1 +Warning: Unused variable ‘tx2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg_utils.F90:1827:27: + + real(r8) :: tx1, tx2, tx3 + 1 +Warning: Unused variable ‘tx3’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_transmit_mpi.h:52:50: + + MPP_TYPE_, allocatable, save :: local_data(:) !local copy used by non-parallel code (no SHMEM or MPI) + 1 +Warning: Unused variable ‘local_data’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg_utils.F90:1228:59: + + subroutine gmao_ice_autoconversion(t, qiic, niic, lami, n0i, & + 1 +Warning: Unused dummy argument ‘n0i’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg_utils.F90:1124:60: + + subroutine sb2001v2_accre_cld_water_rain(qc,nc,qr,rho,relvar,pra,npra,mgncol) + 1 +Warning: Unused dummy argument ‘relvar’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg_utils.F90:1147:33: + + real(r8) :: dum, dum1, tx1, tx2 + 1 +Warning: Unused variable ‘tx2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg_utils.F90:1067:49: + + subroutine liu_liq_autoconversion(pgam,qc,nc,qr,rho,relvar, & + 1 +Warning: Unused dummy argument ‘qr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg_utils.F90:1020:57: + + real(r8) :: dum, dum1, nu, pra_coef, tx1, tx2, tx3, tx4 + 1 +Warning: Unused variable ‘tx4’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_transmit_mpi.h:52:50: + + MPP_TYPE_, allocatable, save :: local_data(:) !local copy used by non-parallel code (no SHMEM or MPI) + 1 +Warning: Unused variable ‘local_data’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:419:42: + + integer :: n, i, from_rank, out_unit + 1 +Warning: Unused variable ‘out_unit’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:331:43: + + subroutine mpp_malloc( ptr, newlen, len ) + 1 +Warning: Unused dummy argument ‘len’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:331:38: + + subroutine mpp_malloc( ptr, newlen, len ) + 1 +Warning: Unused dummy argument ‘newlen’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:331:30: + + subroutine mpp_malloc( ptr, newlen, len ) + 1 +Warning: Unused dummy argument ‘ptr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:221:36: + + integer :: i, j, k, n, nmax, istat, out_unit, log_unit + 1 +Warning: Unused variable ‘istat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:221:20: + + integer :: i, j, k, n, nmax, istat, out_unit, log_unit + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg_utils.F90:318:36: + + subroutine micro_mg_utils_init( kind, rair, rh2o, cpair, tmelt_in, latvap, & + 1 +Warning: Unused dummy argument ‘kind’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:37:34: + + type(mpp_type), pointer :: dtype + 1 +Warning: Unused variable ‘dtype’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:33:54: + + integer :: my_pe, num_pes, len, i, iunit + 1 +Warning: Unused variable ‘len’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:33:40: + + integer :: my_pe, num_pes, len, i, iunit + 1 +Warning: Unused variable ‘my_pe’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:33:49: + + integer :: my_pe, num_pes, len, i, iunit + 1 +Warning: Unused variable ‘num_pes’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:36:29: + + character(len=5) :: this_pe + 1 +Warning: Unused variable ‘this_pe’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:35:45: + + integer :: unit_begin, unit_end, unit_nml, io_status + 1 +Warning: Unused variable ‘unit_begin’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:35:55: + + integer :: unit_begin, unit_end, unit_nml, io_status + 1 +Warning: Unused variable ‘unit_end’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_comm_mpi.inc:35:65: + + integer :: unit_begin, unit_end, unit_nml, io_status + 1 +Warning: Unused variable ‘unit_nml’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_util.inc:1475:24: + + integer :: status, i, f_unit, log_unit + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_util.inc:962:26: + + integer :: i,j,k,ct, msg_cnt + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_util.inc:802:38: + + integer :: i + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_util.inc:584:38: + + integer :: i + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_util.inc:485:33: + + logical :: opened + 1 +Warning: Unused variable ‘opened’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_util.inc:100:27: + + integer :: stdlog,istat + 1 +Warning: Unused variable ‘istat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_util_mpi.inc:193:36: + + integer :: i, m, n, stride, my_check, rsize + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_util_mpi.inc:193:42: + + integer :: i, m, n, stride, my_check, rsize + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_util_mpi.inc:186:32: + + subroutine mpp_sync_self( pelist, check, request, msg_size, msg_type) + 1 +Warning: Unused dummy argument ‘pelist’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_util_mpi.inc:193:50: + + integer :: i, m, n, stride, my_check, rsize + 1 +Warning: Unused variable ‘stride’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_util_mpi.inc:87:40: + + integer :: group, errunit + 1 +Warning: Unused variable ‘group’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_util_mpi.inc:88:50: + + integer :: i, n, stride, l + 1 +Warning: Unused variable ‘l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_util_mpi.inc:88:47: + + integer :: i, n, stride, l + 1 +Warning: Unused variable ‘stride’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_util_mpi.inc:90:28: + + character(len=128) :: text + 1 +Warning: Unused variable ‘text’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_util_mpi.inc:35:49: + + integer :: istat, errunit + 1 +Warning: Unused variable ‘istat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_util_mpi.inc:34:50: + + logical :: opened + 1 +Warning: Unused variable ‘opened’ declared at (1) [-Wunused-variable] +[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F:61:42: + + & fprcp,ntrw,ntsw,ntrnc,ntsnc, + 1 +Warning: Unused dummy argument ‘fprcp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F:77:51: + + integer :: i, j, status, ierr + 1 +Warning: Unused variable ‘ierr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F:59:57: + + subroutine tracer_config_init (ntrac,ntoz,ntcw,ncld, + 1 +Warning: Unused dummy argument ‘ncld’ at (1) [-Wunused-dummy-argument] +[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/surface_perturbation.F90:318:53: + + real(kind=kind_phys) dp, dq, gamln, yxeps, w, uflo + 1 +Warning: Unused variable ‘gamln’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_transmit_mpi.h:179:0: + + 'T=',tick, ' PE=',pe, ' MPP_BROADCAST begin: from_pe, length=', from_pe, length + +Warning: ‘stdout_unit’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_transmit_mpi.h:179:0: + + 'T=',tick, ' PE=',pe, ' MPP_BROADCAST begin: from_pe, length=', from_pe, length + +Warning: ‘stdout_unit’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_transmit_mpi.h:179:0: + + 'T=',tick, ' PE=',pe, ' MPP_BROADCAST begin: from_pe, length=', from_pe, length + +Warning: ‘stdout_unit’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_transmit_mpi.h:179:0: + + 'T=',tick, ' PE=',pe, ' MPP_BROADCAST begin: from_pe, length=', from_pe, length + +Warning: ‘stdout_unit’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_transmit_mpi.h:179:0: + + 'T=',tick, ' PE=',pe, ' MPP_BROADCAST begin: from_pe, length=', from_pe, length + +Warning: ‘stdout_unit’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_transmit_mpi.h:179:0: + + 'T=',tick, ' PE=',pe, ' MPP_BROADCAST begin: from_pe, length=', from_pe, length + +Warning: ‘stdout_unit’ may be used uninitialized in this function [-Wmaybe-uninitialized] +[ 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4816:19: + + i = i + 1 - n/2 + 1 +Warning: Integer division truncated to constant ‘1’ at (1) [-Winteger-division] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:56:37: + + character (len = 17) :: mod_name = 'gfdl_cloud_microphys' + 1 +Warning: CHARACTER expression at (1) is being truncated (20/17) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4969:30: + + integer ,intent (in ) :: itf,ktf, its,ite, kts,kte + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:5019:11: + + 655 continue + 1 +Warning: Label 655 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4737:3: + + 100 format(1x,16i3) + 1 +Warning: Label 100 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4450:3: + + 122 format(1x,i4,1x,f8.1,1x,f6.2,1x,f6.2) + 1 +Warning: Label 122 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:3859:3: + + 125 format(1x,2e13.4) + 1 +Warning: Label 125 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:3858:3: + + 124 format(1x,i3,4e13.4) + 1 +Warning: Label 124 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:1689:3: + + 444 format(1x,i2,1x,7e12.4) !,1x,f7.2,2x,e13.5) + 1 +Warning: Label 444 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:1893:4: + + 250 continue + 1 +Warning: Label 250 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:1826:4: + + 200 continue + 1 +Warning: Label 200 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:1019:2: + + 41 continue + 1 +Warning: Label 41 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:5141:34: + + real(kind=kind_phys) :: dz,dh, dbythresh + 1 +Warning: Unused variable ‘dh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:5143:23: + + integer :: i,k,ipr,kdefi,kstart,kbegzu,kfinalzu + 1 +Warning: Unused variable ‘ipr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:5131:35: + + kstabi,k22,kbcon,its,ite,itf,kts,kte,ktf,zuo,kpbl,klcl,hcot) + 1 +Warning: Unused dummy argument ‘k22’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:5143:43: + + integer :: i,k,ipr,kdefi,kstart,kbegzu,kfinalzu + 1 +Warning: Unused variable ‘kbegzu’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:5143:29: + + integer :: i,k,ipr,kdefi,kstart,kbegzu,kfinalzu + 1 +Warning: Unused variable ‘kdefi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:5131:79: + + kstabi,k22,kbcon,its,ite,itf,kts,kte,ktf,zuo,kpbl,klcl,hcot) + 1 +Warning: Unused dummy argument ‘klcl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:5131:74: + + kstabi,k22,kbcon,its,ite,itf,kts,kte,ktf,zuo,kpbl,klcl,hcot) + 1 +Warning: Unused dummy argument ‘kpbl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:5131:31: + + kstabi,k22,kbcon,its,ite,itf,kts,kte,ktf,zuo,kpbl,klcl,hcot) + 1 +Warning: Unused dummy argument ‘kstabi’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:5143:36: + + integer :: i,k,ipr,kdefi,kstart,kbegzu,kfinalzu + 1 +Warning: Unused variable ‘kstart’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:5130:46: + + subroutine get_cloud_top(name,ktop,ierr,p_cup,entr_rate_2d,hkbo,heo,heso_cup,z_cup, & + 1 +Warning: Unused dummy argument ‘p_cup’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:5131:69: + + kstabi,k22,kbcon,its,ite,itf,kts,kte,ktf,zuo,kpbl,klcl,hcot) + 1 +Warning: Unused dummy argument ‘zuo’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:5069:53: + + real(kind=kind_phys), dimension(its:ite) :: norm,total_pwo_solid_phase + 1 +Warning: Unused variable ‘norm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:5056:82: + + subroutine get_melting_profile(ierr,tn_cup,po_cup, p_liq_ice,melting_layer,qrco & + 1 +Warning: Unused dummy argument ‘qrco’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:5056:45: + + subroutine get_melting_profile(ierr,tn_cup,po_cup, p_liq_ice,melting_layer,qrco & + 1 +Warning: Unused dummy argument ‘tn_cup’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4866:26: + + integer :: i,k, incr1,incr2,turn + 1 +Warning: Unused variable ‘incr1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4866:32: + + integer :: i,k, incr1,incr2,turn + 1 +Warning: Unused variable ‘incr2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4866:37: + + integer :: i,k, incr1,incr2,turn + 1 +Warning: Unused variable ‘turn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4669:48: + + kstart,kend,dtempdz,itf,ktf,its,ite, kts,kte) + 1 +Warning: Unused dummy argument ‘ktf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4668:71: + + subroutine get_inversion_layers(ierr,p_cup,t_cup,z_cup,qo_cup,qeso_cup,k_inv_layers,& + 1 +Warning: Unused dummy argument ‘qeso_cup’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4668:62: + + subroutine get_inversion_layers(ierr,p_cup,t_cup,z_cup,qo_cup,qeso_cup,k_inv_layers,& + 1 +Warning: Unused dummy argument ‘qo_cup’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4600:26: + + z_cup,zu,dby,gamma_cup,t_cup, & + 1 +Warning: Unused dummy argument ‘dby’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4600:36: + + z_cup,zu,dby,gamma_cup,t_cup, & + 1 +Warning: Unused dummy argument ‘gamma_cup’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4602:21: + + itf,ktf, & + 1 +Warning: Unused dummy argument ‘ktf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4601:24: + + kbcon,ktop,ierr, & + 1 +Warning: Unused dummy argument ‘ktop’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4600:42: + + z_cup,zu,dby,gamma_cup,t_cup, & + 1 +Warning: Unused dummy argument ‘t_cup’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4600:22: + + z_cup,zu,dby,gamma_cup,t_cup, & + 1 +Warning: Unused dummy argument ‘zu’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4341:79: + + subroutine get_zu_zd_pdf_fim(kklev,p,rand_vmas,zubeg,ipr,xland,zuh2,draft,ierr,kb,kt,zu,kts,kte,ktf,max_mass,kpbli,csum,pmin_lev) + 1 +Warning: Unused dummy argument ‘ierr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4341:57: + + subroutine get_zu_zd_pdf_fim(kklev,p,rand_vmas,zubeg,ipr,xland,zuh2,draft,ierr,kb,kt,zu,kts,kte,ktf,max_mass,kpbli,csum,pmin_lev) + 1 +Warning: Unused dummy argument ‘ipr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4360:17: + + integer :: k1,kk,k,kb_adj,kpbli_adj,kmax + 1 +Warning: Unused variable ‘kk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4360:41: + + integer :: k1,kk,k,kb_adj,kpbli_adj,kmax + 1 +Warning: Unused variable ‘kmax’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4360:36: + + integer :: k1,kk,k,kb_adj,kpbli_adj,kmax + 1 +Warning: Unused variable ‘kpbli_adj’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4361:40: + + real(kind=kind_phys) :: maxlim,krmax,kratio,tunning,fzu,rand_vmas,lev_start + 1 +Warning: Unused variable ‘krmax’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4341:109: + + subroutine get_zu_zd_pdf_fim(kklev,p,rand_vmas,zubeg,ipr,xland,zuh2,draft,ierr,kb,kt,zu,kts,kte,ktf,max_mass,kpbli,csum,pmin_lev) + 1 +Warning: Unused dummy argument ‘max_mass’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4341:129: + + subroutine get_zu_zd_pdf_fim(kklev,p,rand_vmas,zubeg,ipr,xland,zuh2,draft,ierr,kb,kt,zu,kts,kte,ktf,max_mass,kpbli,csum,pmin_lev) + 1 +Warning: Unused dummy argument ‘pmin_lev’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4341:47: + + subroutine get_zu_zd_pdf_fim(kklev,p,rand_vmas,zubeg,ipr,xland,zuh2,draft,ierr,kb,kt,zu,kts,kte,ktf,max_mass,kpbli,csum,pmin_lev) + 1 +Warning: Unused dummy argument ‘rand_vmas’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4341:63: + + subroutine get_zu_zd_pdf_fim(kklev,p,rand_vmas,zubeg,ipr,xland,zuh2,draft,ierr,kb,kt,zu,kts,kte,ktf,max_mass,kpbli,csum,pmin_lev) + 1 +Warning: Unused dummy argument ‘xland’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4341:68: + + subroutine get_zu_zd_pdf_fim(kklev,p,rand_vmas,zubeg,ipr,xland,zuh2,draft,ierr,kb,kt,zu,kts,kte,ktf,max_mass,kpbli,csum,pmin_lev) + 1 +Warning: Unused dummy argument ‘zuh2’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4240:63: + + real(kind=kind_phys) :: entr_init,beta_u,dz,dbythresh,dzh2,zustart,zubeg,massent,massdetr + 1 +Warning: Unused variable ‘dzh2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4243:33: + + integer :: kklev,i,kk,kbegin,k,kfinalzu + 1 +Warning: Unused variable ‘kbegin’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4243:26: + + integer :: kklev,i,kk,kbegin,k,kfinalzu + 1 +Warning: Unused variable ‘kk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4229:70: + + xland,kstabi,k22,kbcon,its,ite,itf,kts,kte,ktf,zuo,kpbl,ktopdby,csum,pmin_lev) + 1 +Warning: Unused dummy argument ‘kpbl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4229:27: + + xland,kstabi,k22,kbcon,its,ite,itf,kts,kte,ktf,zuo,kpbl,ktopdby,csum,pmin_lev) + 1 +Warning: Unused dummy argument ‘kstabi’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:4242:42: + + real(kind=kind_phys) zuh2(40),zh2(40) + 1 +Warning: Unused variable ‘zh2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:3871:19: + + itest,itf,ktf, & + 1 +Warning: Unused dummy argument ‘itest’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:3866:34: + + subroutine cup_up_moisture(name,ierr,z_cup,qc,qrc,pw,pwav, & + 1 +Warning: Unused dummy argument ‘name’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:3867:49: + + p_cup,kbcon,ktop,dby,clw_all,xland1, & + 1 +Warning: Unused dummy argument ‘xland1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:3869:20: + + zqexec,ccn,rho,c1d,t, & + 1 +Warning: Unused dummy argument ‘zqexec’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:3630:32: + + edt,pwd,name,ierr2,ierr3,p_cup,pr_ens, & + 1 +Warning: Unused dummy argument ‘ierr2’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:3630:38: + + edt,pwd,name,ierr2,ierr3,p_cup,pr_ens, & + 1 +Warning: Unused dummy argument ‘ierr3’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:3633:30: + + ichoice,imid,ipr,itf,ktf, & + 1 +Warning: Unused dummy argument ‘ipr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:3633:38: + + ichoice,imid,ipr,itf,ktf, & + 1 +Warning: Unused dummy argument ‘ktf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:3630:26: + + edt,pwd,name,ierr2,ierr3,p_cup,pr_ens, & + 1 +Warning: Unused dummy argument ‘name’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:3632:34: + + sig,closure_n,xland1,xmbm_in,xmbs_in, & + 1 +Warning: Unused dummy argument ‘xland1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:3632:42: + + sig,closure_n,xland1,xmbm_in,xmbs_in, & + 1 +Warning: Unused dummy argument ‘xmbm_in’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:3629:16: + + zu,pre,pw,xmb,ktop, & + 1 +Warning: Unused dummy argument ‘zu’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:3518:30: + + subroutine neg_check(name,j,dt,q,outq,outt,outu,outv, & + 1 +Warning: Unused dummy argument ‘j’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:3519:58: + + outqc,pret,its,ite,kts,kte,itf,ktf,ktop) + 1 +Warning: Unused dummy argument ‘ktf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:3396:21: + + itf,ktf, & + 1 +Warning: Unused dummy argument ‘ktf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:3340:21: + + itf,ktf, & + 1 +Warning: Unused dummy argument ‘ktf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:3203:19: + + jprnt,itf,ktf, & + 1 +Warning: Unused dummy argument ‘jprnt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:3203:27: + + jprnt,itf,ktf, & + 1 +Warning: Unused dummy argument ‘ktf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:2819:42: + + subroutine cup_forcing_ens_3d(closure_n,xland,aa0,aa1,xaa0,mbdt,dtime,ierr,ierr2,ierr3,& + 1 +Warning: Unused dummy argument ‘closure_n’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:2823:18: + + imid,ipr,itf,ktf, & + 1 +Warning: Unused dummy argument ‘imid’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:2823:22: + + imid,ipr,itf,ktf, & + 1 +Warning: Unused dummy argument ‘ipr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:2821:40: + + p_cup,ktop,omeg,zd,zdm,k22,zu,pr_ens,edt,edtm,kbcon, & + 1 +Warning: Unused dummy argument ‘k22’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:2823:30: + + imid,ipr,itf,ktf, & + 1 +Warning: Unused dummy argument ‘ktf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:2821:24: + + p_cup,ktop,omeg,zd,zdm,k22,zu,pr_ens,edt,edtm,kbcon, & + 1 +Warning: Unused dummy argument ‘ktop’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:2916:18: + + kk,i,k,n,ne + 1 +Warning: Unused variable ‘ne’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:2821:19: + + p_cup,ktop,omeg,zd,zdm,k22,zu,pr_ens,edt,edtm,kbcon, & + 1 +Warning: Unused dummy argument ‘p_cup’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:4497:17: + + it = ap1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:4508:21: + + it = ap1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:4394:9: + + it = ap1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:4228:13: + + it = ap1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:4199:13: + + it = ap1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:4170:13: + + it = ap1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:4142:9: + + it = ap1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:4119:9: + + it = ap1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:4094:9: + + it = ap1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:4070:9: + + it = ap1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:4046:9: + + it = ap1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:4019:9: + + it = ap1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:4022:9: + + it = ap1 - 0.5 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:3989:9: + + it = ap1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:3992:9: + + it = ap1 - 0.5 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:3960:9: + + it = ap1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:3963:9: + + it = ap1 - 0.5 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:3931:9: + + it = ap1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:3873:9: + + it = ap1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:3876:9: + + it = ap1 - 0.5 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:3839:9: + + it = ap1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:2600:29: + + psur,ierr,tcrit,itest, & + 1 +Warning: Unused dummy argument ‘tcrit’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:2438:18: + + q,he,iloop, & + 1 +Warning: Unused dummy argument ‘he’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:51:24: + + real :: missing_value = - 1.e10 + 1 +Warning: Unused PRIVATE module variable ‘missing_value’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:56:35: + + character (len = 17) :: mod_name = 'gfdl_cloud_microphys' + 1 +Warning: Unused PRIVATE module variable ‘mod_name’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:2346:16: + + integer i,k,kk + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:2311:16: + + pw,ccn,pwev,edtmax,edtmin,edtc,psum2,psumh, & + 1 +Warning: Unused dummy argument ‘pw’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:2312:17: + + rho,aeroevap,itf,ktf, & + 1 +Warning: Unused dummy argument ‘rho’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:4874:17: + + INTEGER:: i, k, k_0, kbot, n + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:4851:50: + + t1d, p1d, dBZ, kts, kte, ii, jj, melti) + 1 +Warning: Unused dummy argument ‘ii’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:4851:54: + + t1d, p1d, dBZ, kts, kte, ii, jj, melti) + 1 +Warning: Unused dummy argument ‘jj’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:4874:31: + + INTEGER:: i, k, k_0, kbot, n + 1 +Warning: Unused variable ‘kbot’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:2227:44: + + po_cup,qes_cup,pwavo,edto,pwevo,pre,outt,outq) !,outbuoy) + 1 +Warning: Unused dummy argument ‘edto’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:2225:47: + + subroutine rain_evap_below_cloudbase(itf,ktf, its,ite, kts,kte,ierr, & + 1 +Warning: Unused dummy argument ‘ktf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:2227:39: + + po_cup,qes_cup,pwavo,edto,pwevo,pre,outt,outq) !,outbuoy) + 1 +Warning: Unused dummy argument ‘pwavo’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:2227:50: + + po_cup,qes_cup,pwavo,edto,pwevo,pre,outt,outq) !,outbuoy) + 1 +Warning: Unused dummy argument ‘pwevo’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:2226:28: + + kbcon,xmb,psur,xland,qo_cup, & + 1 +Warning: Unused dummy argument ‘xmb’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:346:68: + + real(kind=kind_phys) :: pgeoh,dts,fp,fpi,pmin,x_add,beta,beta_u + 1 +Warning: Unused variable ‘beta_u’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:347:33: + + real(kind=kind_phys) :: cbeg,cmid,cend,const_a,const_b,const_c + 1 +Warning: Unused variable ‘cbeg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:347:43: + + real(kind=kind_phys) :: cbeg,cmid,cend,const_a,const_b,const_c + 1 +Warning: Unused variable ‘cend’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:347:38: + + real(kind=kind_phys) :: cbeg,cmid,cend,const_a,const_b,const_c + 1 +Warning: Unused variable ‘cmid’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:347:51: + + real(kind=kind_phys) :: cbeg,cmid,cend,const_a,const_b,const_c + 1 +Warning: Unused variable ‘const_a’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:347:59: + + real(kind=kind_phys) :: cbeg,cmid,cend,const_a,const_b,const_c + 1 +Warning: Unused variable ‘const_b’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:347:67: + + real(kind=kind_phys) :: cbeg,cmid,cend,const_a,const_b,const_c + 1 +Warning: Unused variable ‘const_c’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:296:54: + + cap_max_increment,closure_n,psum,psumh,sig,sigd + 1 +Warning: Unused variable ‘sigd’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:310:30: + + dh,cap_maxs,trash,trash2,frh,sig_thresh + 1 +Warning: Unused variable ‘trash2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:116:27: + + ,jmin,tropics) ! + 1 +Warning: Unused dummy argument ‘tropics’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_deep.F90:338:20: + + integer :: turn,pmin_lev(its:ite),start_level(its:ite),ktopkeep(its:ite) + 1 +Warning: Unused variable ‘turn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:4404:22: + + subroutine qs_table (n) + 1 +Warning: Unused dummy argument ‘n’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:3530:21: + + logical :: exists + 1 +Warning: Unused variable ‘exists’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:3517:93: + + subroutine gfdl_cloud_microphys_mod_init (me, master, nlunit, input_nml_file, logunit, fn_nml) + 1 +Warning: Unused dummy argument ‘fn_nml’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:3529:18: + + integer :: ios + 1 +Warning: Unused variable ‘ios’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:3517:60: + + subroutine gfdl_cloud_microphys_mod_init (me, master, nlunit, input_nml_file, logunit, fn_nml) + 1 +Warning: Unused dummy argument ‘nlunit’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:3372:20: + + real :: gcon, cd, scm3, pisq, act (8) + 1 +Warning: Unused variable ‘cd’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:3286:39: + + real, dimension (ktop:kbot) :: qden, tc, rhof + 1 +Warning: Unused variable ‘qden’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:3255:54: + + subroutine fall_speed (ktop, kbot, den, qs, qi, qg, ql, tk, vts, vti, vtg) + 1 +Warning: Unused dummy argument ‘ql’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:3053:42: + + real :: d4, bet, a_bot, grat, pmp, lac + 1 +Warning: Unused variable ‘lac’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:3053:37: + + real :: d4, bet, a_bot, grat, pmp, lac + 1 +Warning: Unused variable ‘pmp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:2937:46: + + subroutine lagrangian_fall_ppm (ktop, kbot, zs, ze, zt, dp, q, precip, m1, mono) + 1 +Warning: Unused dummy argument ‘zs’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:2529:11: + + den, vtg, vts, vti, r1, g1, s1, i1, m1_sol, w1) + 1 +Warning: Unused dummy argument ‘den’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:2545:23: + + real :: qsat, dqsdt, dt5, evap, dtime + 1 +Warning: Unused variable ‘dqsdt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:2545:34: + + real :: qsat, dqsdt, dt5, evap, dtime + 1 +Warning: Unused variable ‘evap’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:2546:18: + + real :: factor, frac + 1 +Warning: Unused variable ‘factor’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:2546:24: + + real :: factor, frac + 1 +Warning: Unused variable ‘frac’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:2547:23: + + real :: tmp, precip, tc, sink + 1 +Warning: Unused variable ‘precip’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:2545:16: + + real :: qsat, dqsdt, dt5, evap, dtime + 1 +Warning: Unused variable ‘qsat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:2435:34: + + subroutine revap_rac1 (hydrostatic, is, ie, dt, tz, qv, ql, qr, qi, qs, qg, den, hvar) + 1 +Warning: Unused dummy argument ‘hydrostatic’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:2042:33: + + real :: evap, sink, tc, pisub, q_adj, dtmp + 1 +Warning: Unused variable ‘pisub’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:2042:40: + + real :: evap, sink, tc, pisub, q_adj, dtmp + 1 +Warning: Unused variable ‘q_adj’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:2015:42: + + ql, qr, qi, qs, qg, qa, h_var, rh_rain) + 1 +Warning: Unused dummy argument ‘rh_rain’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:1527:73: + + subroutine icloud (ktop, kbot, tzk, p1, qvk, qlk, qrk, qik, qsk, qgk, dp1, & + 1 +Warning: Unused dummy argument ‘dp1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:1549:32: + + real :: tmp, qsw, qsi, dqsdt, dq + 1 +Warning: Unused variable ‘dqsdt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:1546:37: + + real :: pgmlt, psmlt, pgfr, pgaut, psaut, pgsub + 1 +Warning: Unused variable ‘pgaut’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:1546:51: + + real :: pgmlt, psmlt, pgfr, pgaut, psaut, pgsub + 1 +Warning: Unused variable ‘pgsub’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:1545:59: + + real :: pracs, psacw, pgacw, psacr, pgacr, pgaci, praci, psaci + 1 +Warning: Unused variable ‘praci’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:1550:37: + + real :: dtmp, qc, q_plus, q_minus + 1 +Warning: Unused variable ‘q_minus’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:1550:20: + + real :: dtmp, qc, q_plus, q_minus + 1 +Warning: Unused variable ‘qc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:1549:25: + + real :: tmp, qsw, qsi, dqsdt, dq + 1 +Warning: Unused variable ‘qsi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:1549:20: + + real :: tmp, qsw, qsi, dqsdt, dq + 1 +Warning: Unused variable ‘qsw’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:1547:19: + + real :: tc, tsq, dqs0, qden, qim, qsm + 1 +Warning: Unused variable ‘tsq’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:1355:87: + + subroutine revap_racc (ktop, kbot, dt, tz, qv, ql, qr, qi, qs, qg, den, denfac, rh_rain, h_var) + 1 +Warning: Unused dummy argument ‘rh_rain’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:655:55: + + rain, snow, graupel, ice, m2_rain, m2_sol, cond, area1, land, & + 1 +Warning: Unused dummy argument ‘cond’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:653:29: + + subroutine mpdrv (hydrostatic, uin, vin, w, delp, pt, qv, ql, qr, qi, qs, & + 1 +Warning: Unused dummy argument ‘hydrostatic’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:654:38: + + qg, qa, qn, dz, is, ie, js, je, ks, ke, ktop, kbot, j, dt_in, ntimes, & + 1 +Warning: Unused dummy argument ‘je’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:654:46: + + qg, qa, qn, dz, is, ie, js, je, ks, ke, ktop, kbot, j, dt_in, ntimes, & + 1 +Warning: Unused dummy argument ‘ke’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:397:17: + + real :: allmax + 1 +Warning: Unused variable ‘allmax’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:389:18: + + integer :: days, ntimes, kflip + 1 +Warning: Unused variable ‘days’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:391:59: + + real, dimension (iie-iis+1, jje-jjs+1) :: prec_mp, prec1, cond, w_var, rh0 + 1 +Warning: Unused variable ‘prec1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:391:77: + + real, dimension (iie-iis+1, jje-jjs+1) :: prec_mp, prec1, cond, w_var, rh0 + 1 +Warning: Unused variable ‘rh0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:384:42: + + real :: mpdt, rdt, dts, convt, tot_prec + 1 +Warning: Unused variable ‘tot_prec’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:2435:0: + + subroutine revap_rac1 (hydrostatic, is, ie, dt, tz, qv, ql, qr, qi, qs, qg, den, hvar) + +Warning: ‘revap_rac1’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:4151:0: + + subroutine esw_table1d (ta, es, n) + +Warning: ‘esw_table1d’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:4180:0: + + subroutine es2_table1d (ta, es, n) + +Warning: ‘es2_table1d’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:4209:0: + + subroutine es3_table1d (ta, es, n) + +Warning: ‘es3_table1d’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:4468:0: + + subroutine qsmith (im, km, ks, t, p, q, qs, dqdt) + +Warning: ‘qsmith’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90:4659:0: + + subroutine interpolate_z (is, ie, js, je, km, zl, hgt, a3, a2) + +Warning: ‘interpolate_z’ defined but not used [-Wunused-function] +[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o +[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg.f:50:9: + + & 0.63, 0.0, 0.0, 0.0, 0.0, 0.0, + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg.f:51:9: + + & 0.0 , 0.0, 0.0, 0.0, 0.0, 0.0, + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg.f:52:9: + + & 0.0 , 0.0, 0.0, 0.0, 0.0, 0.0, + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg.f:53:9: + + & 0.0 , 0.0, 0.0, 0.0, 0.0, 0.0/) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg.f:56:9: + + & 150.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg.f:57:9: + + & 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg.f:58:9: + + & 0.0, 0.0, 0.0, 0.0, 0.0, 0.0/) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg.f:61:9: + + & 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg.f:62:9: + + & 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg.f:63:9: + + & 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg.f:64:9: + + & 0.0, 0.0, 0.0, 0.0, 0.0, 0.0/) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg.f:66:9: + + & 36.35, 42.00, 42.00, 42.00, 42.00, 36.35, + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg.f:67:9: + + & 42.00, 0.00, 0.00, 0.00, 0.00, 0.00, + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg.f:68:9: + + & 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg.f:69:9: + + & 0.00, 0.00, 0.00, 0.00, 0.00, 0.00/) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg.f:77:9: + + & 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg.f:78:9: + + & 0.000, 0.000, 0.000, 0.000, 0.000, 0.000/) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg.f:16:31: + + subroutine set_soilveg(me,isot,ivet,nlunit) + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg.f:16:48: + + subroutine set_soilveg(me,isot,ivet,nlunit) + 1 +Warning: Unused dummy argument ‘nlunit’ at (1) [-Wunused-dummy-argument] +[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1786:8: + + I,J,K,ITF,JTF,KTF + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1768:32: + + SUBROUTINE MYJPBL_INIT(IDS,IDE,JDS,JDE,LM & + 1 +Warning: Unused dummy argument ‘ids’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1769:36: + + & ,IMS,IME,JMS,JME & + 1 +Warning: Unused dummy argument ‘ime’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1769:32: + + & ,IMS,IME,JMS,JME & + 1 +Warning: Unused dummy argument ‘ims’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1770:32: + + & ,ITS,ITE,JTS,JTE ) + 1 +Warning: Unused dummy argument ‘its’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1786:10: + + I,J,K,ITF,JTF,KTF + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1768:40: + + SUBROUTINE MYJPBL_INIT(IDS,IDE,JDS,JDE,LM & + 1 +Warning: Unused dummy argument ‘jds’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1769:44: + + & ,IMS,IME,JMS,JME & + 1 +Warning: Unused dummy argument ‘jme’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1769:40: + + & ,IMS,IME,JMS,JME & + 1 +Warning: Unused dummy argument ‘jms’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1770:40: + + & ,ITS,ITE,JTS,JTE ) + 1 +Warning: Unused dummy argument ‘jts’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1786:12: + + I,J,K,ITF,JTF,KTF + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1682:63: + + SUBROUTINE VDIFV(LMH,DTDIF,UZ0,VZ0,RKMS,D,U,V,RKM,Z,RHO,I,J,LM) + 1 +Warning: Unused dummy argument ‘i’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1682:65: + + SUBROUTINE VDIFV(LMH,DTDIF,UZ0,VZ0,RKMS,D,U,V,RKM,Z,RHO,I,J,LM) + 1 +Warning: Unused dummy argument ‘j’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1572:43: + + ,TH,Q,CWM,RKH,Z,RHO,I,J,LM) + 1 +Warning: Unused dummy argument ‘i’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1572:45: + + ,TH,Q,CWM,RKH,Z,RHO,I,J,LM) + 1 +Warning: Unused dummy argument ‘j’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1522:11: + + ADEN,AKQS,BDEN,BESH,BESM,CDEN,CF,DTOZS,ELL,ELOQ2,ELOQ4 & + 1 +Warning: Unused variable ‘aden’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1522:21: + + ADEN,AKQS,BDEN,BESH,BESM,CDEN,CF,DTOZS,ELL,ELOQ2,ELOQ4 & + 1 +Warning: Unused variable ‘bden’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1522:26: + + ADEN,AKQS,BDEN,BESH,BESM,CDEN,CF,DTOZS,ELL,ELOQ2,ELOQ4 & + 1 +Warning: Unused variable ‘besh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1522:31: + + ADEN,AKQS,BDEN,BESH,BESM,CDEN,CF,DTOZS,ELL,ELOQ2,ELOQ4 & + 1 +Warning: Unused variable ‘besm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1522:36: + + ADEN,AKQS,BDEN,BESH,BESM,CDEN,CF,DTOZS,ELL,ELOQ2,ELOQ4 & + 1 +Warning: Unused variable ‘cden’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1522:49: + + ADEN,AKQS,BDEN,BESH,BESM,CDEN,CF,DTOZS,ELL,ELOQ2,ELOQ4 & + 1 +Warning: Unused variable ‘ell’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1522:55: + + ADEN,AKQS,BDEN,BESH,BESM,CDEN,CF,DTOZS,ELL,ELOQ2,ELOQ4 & + 1 +Warning: Unused variable ‘eloq2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1522:61: + + ADEN,AKQS,BDEN,BESH,BESM,CDEN,CF,DTOZS,ELL,ELOQ2,ELOQ4 & + 1 +Warning: Unused variable ‘eloq4’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1523:12: + + ,ELQDZ,ESH,ESM,ESQHF,GHL,GML,Q1L,RDEN,RDZ + 1 +Warning: Unused variable ‘elqdz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1523:16: + + ,ELQDZ,ESH,ESM,ESQHF,GHL,GML,Q1L,RDEN,RDZ + 1 +Warning: Unused variable ‘esh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1523:20: + + ,ELQDZ,ESH,ESM,ESQHF,GHL,GML,Q1L,RDEN,RDZ + 1 +Warning: Unused variable ‘esm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1523:30: + + ,ELQDZ,ESH,ESM,ESQHF,GHL,GML,Q1L,RDEN,RDZ + 1 +Warning: Unused variable ‘ghl’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1523:34: + + ,ELQDZ,ESH,ESM,ESQHF,GHL,GML,Q1L,RDEN,RDZ + 1 +Warning: Unused variable ‘gml’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1494:26: + + (LMH,DTDIF,Q2,EL,Z,I,J,LM) + 1 +Warning: Unused dummy argument ‘i’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1494:28: + + (LMH,DTDIF,Q2,EL,Z,I,J,LM) + 1 +Warning: Unused dummy argument ‘j’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1523:38: + + ,ELQDZ,ESH,ESM,ESQHF,GHL,GML,Q1L,RDEN,RDZ + 1 +Warning: Unused variable ‘q1l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1523:43: + + ,ELQDZ,ESH,ESM,ESQHF,GHL,GML,Q1L,RDEN,RDZ + 1 +Warning: Unused variable ‘rden’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1523:47: + + ,ELQDZ,ESH,ESM,ESQHF,GHL,GML,Q1L,RDEN,RDZ + 1 +Warning: Unused variable ‘rdz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1332:17: + + ADEN,AKMIN,BDEN,BESH,BESM,CDEN,D2T,ELL,ELOQ2,ELOQ4,ELQDZ & + 1 +Warning: Unused variable ‘akmin’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1332:41: + + ADEN,AKMIN,BDEN,BESH,BESM,CDEN,D2T,ELL,ELOQ2,ELOQ4,ELQDZ & + 1 +Warning: Unused variable ‘d2t’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1304:49: + + (NTSD,ME,LMH,LMXL,GM,GH,EL,T,Q2,Z,AKM,AKH,I,J,LM,PRINT_DIAG,KPBL) + 1 +Warning: Unused dummy argument ‘i’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1304:51: + + (NTSD,ME,LMH,LMXL,GM,GH,EL,T,Q2,Z,AKM,AKH,I,J,LM,PRINT_DIAG,KPBL) + 1 +Warning: Unused dummy argument ‘j’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1329:13: + + K,KINV + 1 +Warning: Unused variable ‘kinv’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1304:70: + + (NTSD,ME,LMH,LMXL,GM,GH,EL,T,Q2,Z,AKM,AKH,I,J,LM,PRINT_DIAG,KPBL) + 1 +Warning: Unused dummy argument ‘kpbl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1304:23: + + (NTSD,ME,LMH,LMXL,GM,GH,EL,T,Q2,Z,AKM,AKH,I,J,LM,PRINT_DIAG,KPBL) + 1 +Warning: Unused dummy argument ‘lmxl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1304:14: + + (NTSD,ME,LMH,LMXL,GM,GH,EL,T,Q2,Z,AKM,AKH,I,J,LM,PRINT_DIAG,KPBL) + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1304:11: + + (NTSD,ME,LMH,LMXL,GM,GH,EL,T,Q2,Z,AKM,AKH,I,J,LM,PRINT_DIAG,KPBL) + 1 +Warning: Unused dummy argument ‘ntsd’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1304:65: + + (NTSD,ME,LMH,LMXL,GM,GH,EL,T,Q2,Z,AKM,AKH,I,J,LM,PRINT_DIAG,KPBL) + 1 +Warning: Unused dummy argument ‘print_diag’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1304:34: + + (NTSD,ME,LMH,LMXL,GM,GH,EL,T,Q2,Z,AKM,AKH,I,J,LM,PRINT_DIAG,KPBL) + 1 +Warning: Unused dummy argument ‘t’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1086:57: + + (NTSD,ME,LMH,DTTURBL,USTAR,GM,GH,EL,Q2,EPSL,EPSQ2,I,J,LM) + 1 +Warning: Unused dummy argument ‘i’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1086:59: + + (NTSD,ME,LMH,DTTURBL,USTAR,GM,GH,EL,Q2,EPSL,EPSQ2,I,J,LM) + 1 +Warning: Unused dummy argument ‘j’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1086:14: + + (NTSD,ME,LMH,DTTURBL,USTAR,GM,GH,EL,Q2,EPSL,EPSQ2,I,J,LM) + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:1086:11: + + (NTSD,ME,LMH,DTTURBL,USTAR,GM,GH,EL,Q2,EPSL,EPSQ2,I,J,LM) + 1 +Warning: Unused dummy argument ‘ntsd’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:865:41: + + ,GM,GH,EL,PBLH,LPBL,LMXL,CT,MIXHT,I,J,LM) + 1 +Warning: Unused dummy argument ‘i’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:865:43: + + ,GM,GH,EL,PBLH,LPBL,LMXL,CT,MIXHT,I,J,LM) + 1 +Warning: Unused dummy argument ‘j’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:864:55: + + (LMH,RSQDT,U,V,THV,THE,Q2,EPSL,EPSQ2,Z,P,PS,RXNER & + 1 +Warning: Unused dummy argument ‘rxner’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:320:11: + + ,DCDT,DELTAZ,DQDT,DTDIF,DTDT,DTTURBL & + 1 +Warning: Unused variable ‘dcdt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:320:23: + + ,DCDT,DELTAZ,DQDT,DTDIF,DTDT,DTTURBL & + 1 +Warning: Unused variable ‘dqdt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:320:34: + + ,DCDT,DELTAZ,DQDT,DTDIF,DTDT,DTTURBL & + 1 +Warning: Unused variable ‘dtdt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:224:39: + + ,AKHS,AKMS,ELFLX,MIXHT,THLM,QLM & + 1 +Warning: Unused dummy argument ‘elflx’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:226:62: + + ,DUSFC,DVSFC,DTSFC,DQSFC,xkzo,xkzmo,ICT & + 1 +Warning: Unused dummy argument ‘ict’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:227:31: + + ,IDS,IDE,JDS,JDE & + 1 +Warning: Unused dummy argument ‘ide’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:227:27: + + ,IDS,IDE,JDS,JDE & + 1 +Warning: Unused dummy argument ‘ids’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:227:39: + + ,IDS,IDE,JDS,JDE & + 1 +Warning: Unused dummy argument ‘jde’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:227:35: + + ,IDS,IDE,JDS,JDE & + 1 +Warning: Unused dummy argument ‘jds’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:224:54: + + ,AKHS,AKMS,ELFLX,MIXHT,THLM,QLM & + 1 +Warning: Unused dummy argument ‘qlm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:322:27: + + ,QBT,QFC1,QLOW,QQ1,QX & + 1 +Warning: Unused variable ‘qx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:224:50: + + ,AKHS,AKMS,ELFLX,MIXHT,THLM,QLM & + 1 +Warning: Unused dummy argument ‘thlm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:325:17: + + ,THBT,THNEW,THOLD,TQ,TTH & + 1 +Warning: Unused variable ‘thnew’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:325:23: + + ,THBT,THNEW,THOLD,TQ,TTH & + 1 +Warning: Unused variable ‘thold’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:326:11: + + ,ULOW,VLOW,RSTDH,STDFAC,ZSF,ZSX,ZSY,ZUV + 1 +Warning: Unused variable ‘ulow’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:326:16: + + ,ULOW,VLOW,RSTDH,STDFAC,ZSF,ZSX,ZSY,ZUV + 1 +Warning: Unused variable ‘vlow’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:223:42: + + ,Q2,EXCH_H,USTAR,Z0,EL_MYJ,PBLH,KPBL,CT & + 1 +Warning: Unused dummy argument ‘z0’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:326:37: + + ,ULOW,VLOW,RSTDH,STDFAC,ZSF,ZSX,ZSY,ZUV + 1 +Warning: Unused variable ‘zsx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:326:41: + + ,ULOW,VLOW,RSTDH,STDFAC,ZSF,ZSX,ZSY,ZUV + 1 +Warning: Unused variable ‘zsy’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90:326:45: + + ,ULOW,VLOW,RSTDH,STDFAC,ZSF,ZSX,ZSY,ZUV + 1 +Warning: Unused variable ‘zuv’ declared at (1) [-Wunused-variable] +[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o +[ 10%] 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gwdps.f:200:58: + + & PRSI,DEL,PRSL,PRSLK,PHII, PHIL,DELTIM,KDT, & + 1 +Warning: Unused dummy argument ‘kdt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gwdps.f:394:33: + + integer idxzb(im), ktrial, klevm1 + 1 +Warning: Unused variable ‘ktrial’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gwdps.f:203:42: + + & nmtvr, cdmbgwd, me, lprnt, ipr, rdxzb, errmsg, errflg) + 1 +Warning: Unused dummy argument ‘lprnt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gwdps.f:203:35: + + & nmtvr, cdmbgwd, me, lprnt, ipr, rdxzb, errmsg, errflg) + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:3848:3: + + 97 continue + 1 +Warning: Label 97 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:741:13: + + nic1 = DLOG(t_Nc(nbc)/t_Nc(1)) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:321:11: + + ta_Ka = (/0.2, 0.4, 0.6, 0.8/) + 1 +Warning: Unused PRIVATE module variable ‘ta_ka’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:319:11: + + ta_Ra = (/0.01, 0.02, 0.04, 0.08, 0.16/) + 1 +Warning: Unused PRIVATE module variable ‘ta_ra’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:5249:17: + + INTEGER:: i, k, k_0, kbot, n + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:5217:42: + + t1d, p1d, dBZ, kts, kte, ii, jj, vt_dBZ, first_time_step) + 1 +Warning: Unused dummy argument ‘ii’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:5217:46: + + t1d, p1d, dBZ, kts, kte, ii, jj, vt_dBZ, first_time_step) + 1 +Warning: Unused dummy argument ‘jj’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:5249:31: + + INTEGER:: i, k, k_0, kbot, n + 1 +Warning: Unused variable ‘kbot’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:5239:45: + + REAL:: oM3, M0, Mrat, slam1, slam2, xDs + 1 +Warning: Unused variable ‘xds’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:4962:59: + + REAL:: satw, sati, siw, p_x, si0x, dtt, dsi, dsw, dab, fc, hx + 1 +Warning: Unused variable ‘dab’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:4962:49: + + REAL:: satw, sati, siw, p_x, si0x, dtt, dsi, dsw, dab, fc, hx + 1 +Warning: Unused variable ‘dsi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:4962:54: + + REAL:: satw, sati, siw, p_x, si0x, dtt, dsi, dsw, dab, fc, hx + 1 +Warning: Unused variable ‘dsw’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:4962:44: + + REAL:: satw, sati, siw, p_x, si0x, dtt, dsi, dsw, dab, fc, hx + 1 +Warning: Unused variable ‘dtt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:4962:63: + + REAL:: satw, sati, siw, p_x, si0x, dtt, dsi, dsw, dab, fc, hx + 1 +Warning: Unused variable ‘fc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:4962:67: + + REAL:: satw, sati, siw, p_x, si0x, dtt, dsi, dsw, dab, fc, hx + 1 +Warning: Unused variable ‘hx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:4963:42: + + REAL:: ntilde, n_in, nmax, nhat, mux, xni, nifa_cc + 1 +Warning: Unused variable ‘mux’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:4963:25: + + REAL:: ntilde, n_in, nmax, nhat, mux, xni, nifa_cc + 1 +Warning: Unused variable ‘n_in’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:4963:37: + + REAL:: ntilde, n_in, nmax, nhat, mux, xni, nifa_cc + 1 +Warning: Unused variable ‘nhat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:4963:31: + + REAL:: ntilde, n_in, nmax, nhat, mux, xni, nifa_cc + 1 +Warning: Unused variable ‘nmax’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:4963:19: + + REAL:: ntilde, n_in, nmax, nhat, mux, xni, nifa_cc + 1 +Warning: Unused variable ‘ntilde’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:4962:33: + + REAL:: satw, sati, siw, p_x, si0x, dtt, dsi, dsw, dab, fc, hx + 1 +Warning: Unused variable ‘p_x’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:4956:39: + + real function iceDeMott(tempc, qv, qvs, qvsi, rho, nifa) + 1 +Warning: Unused dummy argument ‘qv’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:4956:44: + + real function iceDeMott(tempc, qv, qvs, qvsi, rho, nifa) + 1 +Warning: Unused dummy argument ‘qvs’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:4956:50: + + real function iceDeMott(tempc, qv, qvs, qvsi, rho, nifa) + 1 +Warning: Unused dummy argument ‘qvsi’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:4962:23: + + REAL:: satw, sati, siw, p_x, si0x, dtt, dsi, dsw, dab, fc, hx + 1 +Warning: Unused variable ‘sati’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:4962:17: + + REAL:: satw, sati, siw, p_x, si0x, dtt, dsi, dsw, dab, fc, hx + 1 +Warning: Unused variable ‘satw’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:4962:39: + + REAL:: satw, sati, siw, p_x, si0x, dtt, dsi, dsw, dab, fc, hx + 1 +Warning: Unused variable ‘si0x’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:4962:28: + + REAL:: satw, sati, siw, p_x, si0x, dtt, dsi, dsw, dab, fc, hx + 1 +Warning: Unused variable ‘siw’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:4156:59: + + lam_exp, lamr, N0_r, lamc, N0_c, y + 1 +Warning: Unused variable ‘y’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:1573:30: + + REAL:: a_, b_, loga_, A1, A2, tf + 1 +Warning: Unused variable ‘a1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:1573:34: + + REAL:: a_, b_, loga_, A1, A2, tf + 1 +Warning: Unused variable ‘a2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:1564:60: + + REAL:: xDc, Dc_b, Dc_g, xDi, xDr, xDs, xDg, Ds_m, Dg_m + 1 +Warning: Unused variable ‘dg_m’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:1565:32: + + DOUBLE PRECISION:: Dr_star, Dc_star + 1 +Warning: Unused variable ‘dr_star’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:1564:54: + + REAL:: xDc, Dc_b, Dc_g, xDi, xDr, xDs, xDg, Ds_m, Dg_m + 1 +Warning: Unused variable ‘ds_m’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:1584:17: + + INTEGER:: i, k, k2, n, nn, nstep, k_0, kbot, IT, iexfrq + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:1584:24: + + INTEGER:: i, k, k2, n, nn, nstep, k_0, kbot, IT, iexfrq + 1 +Warning: Unused variable ‘k2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:1584:49: + + INTEGER:: i, k, k2, n, nn, nstep, k_0, kbot, IT, iexfrq + 1 +Warning: Unused variable ‘kbot’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:1590:21: + + LOGICAL:: melti, no_micro + 1 +Warning: Unused variable ‘melti’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:1574:31: + + REAL:: tempc, tc0, r_mvd1, r_mvd2, xkrat + 1 +Warning: Unused variable ‘r_mvd1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:1574:39: + + REAL:: tempc, tc0, r_mvd1, r_mvd2, xkrat + 1 +Warning: Unused variable ‘r_mvd2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:1560:17: + + REAL:: rgvm, delta_tp, orho, lfus2 + 1 +Warning: Unused variable ‘rgvm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:1567:47: + + REAL:: stoke_r, stoke_s, stoke_g, stoke_i + 1 +Warning: Unused variable ‘stoke_i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:1567:20: + + REAL:: stoke_r, stoke_s, stoke_g, stoke_i + 1 +Warning: Unused variable ‘stoke_r’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:1567:29: + + REAL:: stoke_r, stoke_s, stoke_g, stoke_i + 1 +Warning: Unused variable ‘stoke_s’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:1564:38: + + REAL:: xDc, Dc_b, Dc_g, xDi, xDr, xDs, xDg, Ds_m, Dg_m + 1 +Warning: Unused variable ‘xdr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:1574:46: + + REAL:: tempc, tc0, r_mvd1, r_mvd2, xkrat + 1 +Warning: Unused variable ‘xkrat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:1017:37: + + ids,ide, jds,jde, kds,kde, & ! domain dims + 1 +Warning: Unused dummy argument ‘ide’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:1017:33: + + ids,ide, jds,jde, kds,kde, & ! domain dims + 1 +Warning: Unused dummy argument ‘ids’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:1017:46: + + ids,ide, jds,jde, kds,kde, & ! domain dims + 1 +Warning: Unused dummy argument ‘jde’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:1017:42: + + ids,ide, jds,jde, kds,kde, & ! domain dims + 1 +Warning: Unused dummy argument ‘jds’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:1017:55: + + ids,ide, jds,jde, kds,kde, & ! domain dims + 1 +Warning: Unused dummy argument ‘kde’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:1017:51: + + ids,ide, jds,jde, kds,kde, & ! domain dims + 1 +Warning: Unused dummy argument ‘kds’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:437:26: + + REAL:: h_01, airmass, niIN3, niCCN3, max_test + 1 +Warning: Unused variable ‘airmass’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:437:17: + + REAL:: h_01, airmass, niIN3, niCCN3, max_test + 1 +Warning: Unused variable ‘h_01’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:414:34: + + ids, ide, jds, jde, kds, kde, & + 1 +Warning: Unused dummy argument ‘ide’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:414:29: + + ids, ide, jds, jde, kds, kde, & + 1 +Warning: Unused dummy argument ‘ids’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:416:34: + + its, ite, jts, jte, kts, kte, & + 1 +Warning: Unused dummy argument ‘ite’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:416:29: + + its, ite, jts, jte, kts, kte, & + 1 +Warning: Unused dummy argument ‘its’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:414:44: + + ids, ide, jds, jde, kds, kde, & + 1 +Warning: Unused dummy argument ‘jde’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:414:39: + + ids, ide, jds, jde, kds, kde, & + 1 +Warning: Unused dummy argument ‘jds’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:416:44: + + its, ite, jts, jte, kts, kte, & + 1 +Warning: Unused dummy argument ‘jte’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:416:39: + + its, ite, jts, jte, kts, kte, & + 1 +Warning: Unused dummy argument ‘jts’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:414:54: + + ids, ide, jds, jde, kds, kde, & + 1 +Warning: Unused dummy argument ‘kde’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:414:49: + + ids, ide, jds, jde, kds, kde, & + 1 +Warning: Unused dummy argument ‘kds’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:416:54: + + its, ite, jts, jte, kts, kte, & + 1 +Warning: Unused dummy argument ‘kte’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:416:49: + + its, ite, jts, jte, kts, kte, & + 1 +Warning: Unused dummy argument ‘kts’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:437:51: + + REAL:: h_01, airmass, niIN3, niCCN3, max_test + 1 +Warning: Unused variable ‘max_test’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:437:41: + + REAL:: h_01, airmass, niIN3, niCCN3, max_test + 1 +Warning: Unused variable ‘niccn3’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_mp_thompson.F90:437:33: + + REAL:: h_01, airmass, niIN3, niCCN3, max_test + 1 +Warning: Unused variable ‘niin3’ declared at (1) [-Wunused-variable] +[ 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp_efp.F90:232:8: + + sum = mpp_reproducing_sum_r8_2d(array_r8, isr, ier, jsr, jer, EFP_sum, reproducing, & + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +[ 12%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o +[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp_pset.F90:518:57: + + subroutine mpp_pset_print_chksum_1D(pset, caller, array) + 1 +Warning: Unused dummy argument ‘array’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp_pset.F90:518:50: + + subroutine mpp_pset_print_chksum_1D(pset, caller, array) + 1 +Warning: Unused dummy argument ‘caller’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp_pset.F90:525:31: + + integer :: errunit + 1 +Warning: Unused variable ‘errunit’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp_pset.F90:518:42: + + subroutine mpp_pset_print_chksum_1D(pset, caller, array) + 1 +Warning: Unused dummy argument ‘pset’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp_pset.F90:409:36: + + subroutine mpp_pset_check_ptr(pset,ptr) + 1 +Warning: Unused dummy argument ‘pset’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp_pset.F90:292:46: + + subroutine mpp_translate_remote_ptr( ptr, pe ) + 1 +Warning: Unused dummy argument ‘pe’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp_pset.F90:292:42: + + subroutine mpp_translate_remote_ptr( ptr, pe ) + 1 +Warning: Unused dummy argument ‘ptr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:105:21: + + INTEGER :: IERR + 1 +Warning: Unused PRIVATE module variable ‘ierr’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:1149:29: + + & ,IDS,IDE,JDS,JDE,KDS,KDE & + 1 +Warning: Unused dummy argument ‘ids’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:1149:37: + + & ,IDS,IDE,JDS,JDE,KDS,KDE & + 1 +Warning: Unused dummy argument ‘jds’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:1149:45: + + & ,IDS,IDE,JDS,JDE,KDS,KDE & + 1 +Warning: Unused dummy argument ‘kds’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:1150:49: + + & ,IMS,IME,JMS,JME,KMS,KME & + 1 +Warning: Unused dummy argument ‘kme’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:1150:45: + + & ,IMS,IME,JMS,JME,KMS,KME & + 1 +Warning: Unused dummy argument ‘kms’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:1151:45: + + & ,ITS,ITE,JTS,JTE,KTS,LM) + 1 +Warning: Unused dummy argument ‘kts’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:501:45: + + REAL(kind=kfpt) :: AKHS02,AKHS10,AKMS02,AKMS10,EKMS10,QSAT10,QSAT2 & + 1 +Warning: Unused variable ‘akms02’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:490:68: + + REAL(kind=kfpt) :: A,B,BTGH,BTGX,CXCHL,CXCHS,DTHV,DU2,ELFC,FCT & + 1 +Warning: Unused variable ‘fct’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:491:28: + + & ,HLFLX,HSFLX,HV,PSH02,PSH10,PSHZ,PSHZL,PSM10,PSMZ,PSMZL & + 1 +Warning: Unused variable ‘hv’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:455:31: + + & ,IDS,IDE,JDS,JDE,KDS,KDE & + 1 +Warning: Unused dummy argument ‘ide’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:455:27: + + & ,IDS,IDE,JDS,JDE,KDS,KDE & + 1 +Warning: Unused dummy argument ‘ids’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:456:31: + + & ,IMS,IME,JMS,JME,KMS,KME & + 1 +Warning: Unused dummy argument ‘ime’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:456:27: + + & ,IMS,IME,JMS,JME,KMS,KME & + 1 +Warning: Unused dummy argument ‘ims’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:457:31: + + & ,ITS,ITE,JTS,JTE,KTS,LM,I,J,ZSFC,RIB) ! Added Bulk Richardson No. + 1 +Warning: Unused dummy argument ‘ite’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:457:27: + + & ,ITS,ITE,JTS,JTE,KTS,LM,I,J,ZSFC,RIB) ! Added Bulk Richardson No. + 1 +Warning: Unused dummy argument ‘its’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:455:39: + + & ,IDS,IDE,JDS,JDE,KDS,KDE & + 1 +Warning: Unused dummy argument ‘jde’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:455:35: + + & ,IDS,IDE,JDS,JDE,KDS,KDE & + 1 +Warning: Unused dummy argument ‘jds’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:456:39: + + & ,IMS,IME,JMS,JME,KMS,KME & + 1 +Warning: Unused dummy argument ‘jme’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:456:35: + + & ,IMS,IME,JMS,JME,KMS,KME & + 1 +Warning: Unused dummy argument ‘jms’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:457:39: + + & ,ITS,ITE,JTS,JTE,KTS,LM,I,J,ZSFC,RIB) ! Added Bulk Richardson No. + 1 +Warning: Unused dummy argument ‘jte’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:457:35: + + & ,ITS,ITE,JTS,JTE,KTS,LM,I,J,ZSFC,RIB) ! Added Bulk Richardson No. + 1 +Warning: Unused dummy argument ‘jts’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:455:47: + + & ,IDS,IDE,JDS,JDE,KDS,KDE & + 1 +Warning: Unused dummy argument ‘kde’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:455:43: + + & ,IDS,IDE,JDS,JDE,KDS,KDE & + 1 +Warning: Unused dummy argument ‘kds’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:456:47: + + & ,IMS,IME,JMS,JME,KMS,KME & + 1 +Warning: Unused dummy argument ‘kme’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:456:43: + + & ,IMS,IME,JMS,JME,KMS,KME & + 1 +Warning: Unused dummy argument ‘kms’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:457:43: + + & ,ITS,ITE,JTS,JTE,KTS,LM,I,J,ZSFC,RIB) ! Added Bulk Richardson No. + 1 +Warning: Unused dummy argument ‘kts’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:457:46: + + & ,ITS,ITE,JTS,JTE,KTS,LM,I,J,ZSFC,RIB) ! Added Bulk Richardson No. + 1 +Warning: Unused dummy argument ‘lm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:501:66: + + REAL(kind=kfpt) :: AKHS02,AKHS10,AKMS02,AKMS10,EKMS10,QSAT10,QSAT2 & + 1 +Warning: Unused variable ‘qsat10’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:501:72: + + REAL(kind=kfpt) :: AKHS02,AKHS10,AKMS02,AKMS10,EKMS10,QSAT10,QSAT2 & 1 -Warning: Type mismatch in argument ‘km’ at (1); passed INTEGER(4) to REAL(8) [-Wargument-mismatch] -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F:2009:72: +Warning: Unused variable ‘qsat2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:492:27: + + & ,RDZ,RDZT,RLMA,RLMN,RLMP & + 1 +Warning: Unused variable ‘rlma’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:492:32: + + & ,RDZ,RDZT,RLMA,RLMN,RLMP & + 1 +Warning: Unused variable ‘rlmn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:492:37: + + & ,RDZ,RDZT,RLMA,RLMN,RLMP & + 1 +Warning: Unused variable ‘rlmp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:502:59: + + & ,RLNT02,RLNT10,RLNU10,SIMH02,SIMH10,SIMM10,T02,T10 & + 1 +Warning: Unused variable ‘t02’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:502:63: + + & ,RLNT02,RLNT10,RLNU10,SIMH02,SIMH10,SIMM10,T02,T10 & + 1 +Warning: Unused variable ‘t10’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:496:53: + + & ,ZETAT,ZETAU,ZQ,ZSLT,ZSLU,ZT,ZU,TOPOTERM,ZZIL,CZETMAX + 1 +Warning: Unused variable ‘topoterm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:495:15: + + & ,X,XLT,XLT4,XLU,XLU4,XT,XT4,XU,XU4,ZETALT,ZETALU & + 1 +Warning: Unused variable ‘x’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:495:19: + + & ,X,XLT,XLT4,XLU,XLU4,XT,XT4,XU,XU4,ZETALT,ZETALU & + 1 +Warning: Unused variable ‘xlt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:503:46: + + & ,TERM1,RLOW,U10E,V10E,WSTAR,XLT02,XLT024,XLT10 & + 1 +Warning: Unused variable ‘xlt02’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:503:53: + + & ,TERM1,RLOW,U10E,V10E,WSTAR,XLT02,XLT024,XLT10 & + 1 +Warning: Unused variable ‘xlt024’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:503:59: + + & ,TERM1,RLOW,U10E,V10E,WSTAR,XLT02,XLT024,XLT10 & + 1 +Warning: Unused variable ‘xlt10’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:504:20: + + & ,XLT104,XLU10,XLU104,XU10,XU104,ZT02,ZT10,ZTAT02,ZTAT10 & + 1 +Warning: Unused variable ‘xlt104’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:495:24: + + & ,X,XLT,XLT4,XLU,XLU4,XT,XT4,XU,XU4,ZETALT,ZETALU & + 1 +Warning: Unused variable ‘xlt4’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:495:28: + + & ,X,XLT,XLT4,XLU,XLU4,XT,XT4,XU,XU4,ZETALT,ZETALU & + 1 +Warning: Unused variable ‘xlu’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:504:26: + + & ,XLT104,XLU10,XLU104,XU10,XU104,ZT02,ZT10,ZTAT02,ZTAT10 & + 1 +Warning: Unused variable ‘xlu10’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:504:33: + + & ,XLT104,XLU10,XLU104,XU10,XU104,ZT02,ZT10,ZTAT02,ZTAT10 & + 1 +Warning: Unused variable ‘xlu104’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:495:33: + + & ,X,XLT,XLT4,XLU,XLU4,XT,XT4,XU,XU4,ZETALT,ZETALU & + 1 +Warning: Unused variable ‘xlu4’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:495:36: + + & ,X,XLT,XLT4,XLU,XLU4,XT,XT4,XU,XU4,ZETALT,ZETALU & + 1 +Warning: Unused variable ‘xt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:495:40: + + & ,X,XLT,XLT4,XLU,XLU4,XT,XT4,XU,XU4,ZETALT,ZETALU & + 1 +Warning: Unused variable ‘xt4’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:495:43: + + & ,X,XLT,XLT4,XLU,XLU4,XT,XT4,XU,XU4,ZETALT,ZETALU & + 1 +Warning: Unused variable ‘xu’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:504:38: + + & ,XLT104,XLU10,XLU104,XU10,XU104,ZT02,ZT10,ZTAT02,ZTAT10 & + 1 +Warning: Unused variable ‘xu10’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:504:44: + + & ,XLT104,XLU10,XLU104,XU10,XU104,ZT02,ZT10,ZTAT02,ZTAT10 & + 1 +Warning: Unused variable ‘xu104’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:495:47: + + & ,X,XLT,XLT4,XLU,XLU4,XT,XT4,XU,XU4,ZETALT,ZETALU & + 1 +Warning: Unused variable ‘xu4’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:448:39: + + & ,USTAR,Z0,Z0BASE,CT,RLMO,AKMS,AKHS,PBLH,WETM & + 1 +Warning: Unused dummy argument ‘z0base’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:457:55: + + & ,ITS,ITE,JTS,JTE,KTS,LM,I,J,ZSFC,RIB) ! Added Bulk Richardson No. + 1 +Warning: Unused dummy argument ‘zsfc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:505:18: + + & ,ZTAU,ZTAU10,ZU10,ZUUZ + 1 +Warning: Unused variable ‘ztau’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:198:26: + + REAL(kind=kfpt) :: A,APESFC,B,BTGX,CWMLOW & + 1 +Warning: Unused variable ‘a’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:198:35: + + REAL(kind=kfpt) :: A,APESFC,B,BTGX,CWMLOW & + 1 +Warning: Unused variable ‘b’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:198:40: + + REAL(kind=kfpt) :: A,APESFC,B,BTGX,CWMLOW & + 1 +Warning: Unused variable ‘btgx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:199:18: + + & ,DQDT,DTDIF,DTDT,DUDT,DVDT & + 1 +Warning: Unused variable ‘dqdt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:199:24: + + & ,DQDT,DTDIF,DTDT,DUDT,DVDT & + 1 +Warning: Unused variable ‘dtdif’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:199:29: + + & ,DQDT,DTDIF,DTDT,DUDT,DVDT & + 1 +Warning: Unused variable ‘dtdt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:199:34: + + & ,DQDT,DTDIF,DTDT,DUDT,DVDT & + 1 +Warning: Unused variable ‘dudt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:199:39: + + & ,DQDT,DTDIF,DTDT,DUDT,DVDT & + 1 +Warning: Unused variable ‘dvdt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:208:47: + + REAL(kind=kfpt),DIMENSION(KTS:LM-1) :: EL,ELM + 1 +Warning: Unused variable ‘el’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:208:51: + + REAL(kind=kfpt),DIMENSION(KTS:LM-1) :: EL,ELM + 1 +Warning: Unused variable ‘elm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:114:39: + + SUBROUTINE JSFC(FLAG_ITER,ITER,ME & + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:202:44: + + & ,RAPA,RAPA02,RAPA10,RATIOMX,RDZ,SEAMASK,SM & + 1 +Warning: Unused variable ‘rdz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_SF_JSFC.F90:203:56: + + & ,T02P,T10P,TEM,TH02P,TH10P,THLOW,THELOW,THM & + 1 +Warning: Unused variable ‘thm’ declared at (1) [-Wunused-variable] +[ 12%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/horiz_interp/horiz_interp_type.F90:156:22: + + buffer_int(2) = npts + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +[ 12%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o +[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:1447:1: + + if(snhei.gt.0.0081*1.e3/rhosn) then + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:5909:5: + + 191 format (f23.19) + 1 +Warning: Label 191 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:5819:4: + + 118 format(6(10Pf23.19)) + 1 +Warning: Label 118 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:5292:5: + + 2211 continue + 1 +Warning: Label 2211 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4758:5: + + 2111 continue + 1 +Warning: Label 2111 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4206:4: + + 212 continue + 1 +Warning: Label 212 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3794:5: + + 1133 FORMAT(I7,8E12.4) + 1 +Warning: Label 1133 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3793:5: + + 1123 FORMAT(I5,8F12.3) + 1 +Warning: Label 1123 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3791:4: + + 222 CONTINUE + 1 +Warning: Label 222 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3795:5: + + 123 format(i6,f6.2,7f8.1) + 1 +Warning: Label 123 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3796:4: + + 122 FORMAT(1X,2I3,6F8.1,F8.3,F8.2) + 1 +Warning: Label 122 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2838:5: + + 1133 FORMAT(I7,8E12.4) + 1 +Warning: Label 1133 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2837:5: + + 1123 FORMAT(I5,8F12.3) + 1 +Warning: Label 1123 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2835:4: + + 222 CONTINUE + 1 +Warning: Label 222 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2839:5: + + 123 format(i6,f6.2,7f8.1) + 1 +Warning: Label 123 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2840:5: + + 122 FORMAT(1X,2I3,6F8.1,F8.3,F8.2) + 1 +Warning: Label 122 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:1140:4: + + 2999 continue ! lakes + 1 +Warning: Label 2999 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:6514:9: + + I=(TN-1.7315E2)/.05+1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:6517:10: + + I1=I-F1/(.05+D1*(TT(I+1)-TT(I))) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:5975:19: + + IALP1 = CVFRZ - 1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:7023:36: + + SUBROUTINE RUCLSMINIT( debug_print, landmask, & + 1 +Warning: Unused dummy argument ‘debug_print’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:7024:40: + + nzs, isltyp, ivgtyp, xice, mavail, & + 1 +Warning: Unused dummy argument ‘ivgtyp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:7026:46: + + ims,ime, jms,jme, kms,kme, & + 1 +Warning: Unused dummy argument ‘kme’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:7026:42: + + ims,ime, jms,jme, kms,kme, & + 1 +Warning: Unused dummy argument ‘kms’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:7027:46: + + its,ite, jts,jte, kts,kte ) + 1 +Warning: Unused dummy argument ‘kte’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:7027:42: + + its,ite, jts,jte, kts,kte ) + 1 +Warning: Unused dummy argument ‘kts’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:6818:30: + + INTEGER :: kstart, kfin, lstart, lfin + 1 +Warning: Unused variable ‘kfin’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:6818:24: + + INTEGER :: kstart, kfin, lstart, lfin + 1 +Warning: Unused variable ‘kstart’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:6818:44: + + INTEGER :: kstart, kfin, lstart, lfin + 1 +Warning: Unused variable ‘lfin’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:6743:58: + + LROU(nvegclas),LTHI(nvegclas),LSIG(nvegclas), & + 1 +Warning: Unused variable ‘lsig’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:6818:38: + + INTEGER :: kstart, kfin, lstart, lfin + 1 +Warning: Unused variable ‘lstart’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:6743:43: + + LROU(nvegclas),LTHI(nvegclas),LSIG(nvegclas), & + 1 +Warning: Unused variable ‘lthi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:6548:52: + + NLCAT,IVGTYP,ISLTYP,iswater,MYJ, & + 1 +Warning: Unused dummy argument ‘myj’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:6500:67: + + SUBROUTINE VILKA(TN,D1,D2,PP,QS,TS,TT,NSTEP,ii,j,iland,isoil) + 1 +Warning: Unused dummy argument ‘isoil’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:6500:50: + + SUBROUTINE VILKA(TN,D1,D2,PP,QS,TS,TT,NSTEP,ii,j,iland,isoil) + 1 +Warning: Unused dummy argument ‘nstep’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:6511:23: + + REAL :: F1,T1,T2,RN + 1 +Warning: Unused variable ‘t2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:6315:17: + + dqm,qmin,ref,wilt,zshalf,pc,iland, & !--- soil fixed fields + 1 +Warning: Unused dummy argument ‘dqm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:6171:24: + + REAL :: tln,tavln,tn,pf,a,am,ame,h + 1 +Warning: Unused variable ‘tavln’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:6171:18: + + REAL :: tln,tavln,tn,pf,a,am,ame,h + 1 +Warning: Unused variable ‘tln’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:6170:16: + + REAL :: x,x1,x2,x4,ws,wd,fact,fach,facd,psif,ci + 1 +Warning: Unused variable ‘x’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:5805:20: + + REAL :: F1,F2,FD,KDT,VAL,DDT,PX,FK,FKMAX + 1 +Warning: Unused variable ‘f2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4896:29: + + DQM,QMIN,PSIS,BCLH, & !--- soil fixed fields + 1 +Warning: Unused dummy argument ‘bclh’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:5056:35: + + FKT,D1,D2,D9,D10,DID,R211,R21,R22,R6,R7,D11, & + 1 +Warning: Unused variable ‘did’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4896:14: + + DQM,QMIN,PSIS,BCLH, & !--- soil fixed fields + 1 +Warning: Unused dummy argument ‘dqm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4898:29: + + XLVM,CP,rovcp,G0_P,CVW,STBOLT, & !--- constants + 1 +Warning: Unused dummy argument ‘g0_p’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4892:18: + + GLW,GSW,EMISS,RNET, & + 1 +Warning: Unused dummy argument ‘gsw’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:5058:38: + + TDENOM,C,CC,AA1,RHCS,H1, & + 1 +Warning: Unused variable ‘h1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4895:35: + + TRANF,TRANSUM,DEW,MAVAIL, & + 1 +Warning: Unused dummy argument ‘mavail’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4893:23: + + QKMS,TKMS,PC,RHO,VEGFRAC, & + 1 +Warning: Unused dummy argument ‘pc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:5057:17: + + PI,H,FKQ,R210,AA,BB,PP,Q1,QS1,TS1,TQ2,TX2, & + 1 +Warning: Unused variable ‘pi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4896:24: + + DQM,QMIN,PSIS,BCLH, & !--- soil fixed fields + 1 +Warning: Unused dummy argument ‘psis’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4891:32: + + PATM,TABS,QVATM,QCATM, & + 1 +Warning: Unused dummy argument ‘qcatm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4896:19: + + DQM,QMIN,PSIS,BCLH, & !--- soil fixed fields + 1 +Warning: Unused dummy argument ‘qmin’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4898:24: + + XLVM,CP,rovcp,G0_P,CVW,STBOLT, & !--- constants + 1 +Warning: Unused dummy argument ‘rovcp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:5059:32: + + tsob, snprim, sh1, sh2, & + 1 +Warning: Unused variable ‘sh1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:5059:37: + + tsob, snprim, sh1, sh2, & + 1 +Warning: Unused variable ‘sh2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:5046:43: + + REAL :: x,x1,x2,x4,dzstop,can,ft,sph, & + 1 +Warning: Unused variable ‘sph’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:5061:27: + + CMC2MS,TNOLD,QGOLD,SNOHGNEW + 1 +Warning: Unused variable ‘tnold’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:5046:25: + + REAL :: x,x1,x2,x4,dzstop,can,ft,sph, & + 1 +Warning: Unused variable ‘x4’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4569:42: + + TRANSUM,DEW,MAVAIL,soilres,alfa, & + 1 +Warning: Unused dummy argument ‘alfa’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4570:24: + + DQM,QMIN,BCLH, & !---soil fixed fields + 1 +Warning: Unused dummy argument ‘bclh’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4569:22: + + TRANSUM,DEW,MAVAIL,soilres,alfa, & + 1 +Warning: Unused dummy argument ‘dew’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4701:35: + + REAL :: FKT,D1,D2,D9,D10,DID,R211,R21,R22,R6,R7,D11 , & + 1 +Warning: Unused variable ‘did’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4570:14: + + DQM,QMIN,BCLH, & !---soil fixed fields + 1 +Warning: Unused dummy argument ‘dqm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4699:39: + + tn,trans,umveg,denom,fex + 1 +Warning: Unused variable ‘fex’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4572:22: + + XLV,CP,G0_P,CVW,STBOLT, & !--- constants + 1 +Warning: Unused dummy argument ‘g0_p’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4705:31: + + REAL :: C,CC,AA1,RHCS,H1, QGOLD + 1 +Warning: Unused variable ‘h1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4567:39: + + QKMS,TKMS,PC,RHO,VEGFRAC,lai, & + 1 +Warning: Unused dummy argument ‘lai’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4567:23: + + QKMS,TKMS,PC,RHO,VEGFRAC,lai, & + 1 +Warning: Unused dummy argument ‘pc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4702:17: + + PI,H,FKQ,R210,AA,BB,PP,Q1,QS1,TS1,TQ2,TX2 , & + 1 +Warning: Unused variable ‘pi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4565:45: + + PRCPMS,RAINF,PATM,TABS,QVATM,QCATM, & + 1 +Warning: Unused dummy argument ‘qcatm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4570:19: + + DQM,QMIN,BCLH, & !---soil fixed fields + 1 +Warning: Unused dummy argument ‘qmin’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4698:43: + + REAL :: x,x1,x2,x4,dzstop,can,ft,sph , & + 1 +Warning: Unused variable ‘sph’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:4698:25: + + REAL :: x,x1,x2,x4,dzstop,can,ft,sph , & + 1 +Warning: Unused variable ‘x4’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3935:35: + + FKT,D1,D2,D9,D10,DID,R211,R21,R22,R6,R7,D11, & + 1 +Warning: Unused variable ‘did’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3816:38: + + zsmain,zshalf,DTDZS,DTDZS2,tbq, & + 1 +Warning: Unused dummy argument ‘dtdzs2’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3926:26: + + REAL :: CP,rovcp,G0,LV,xlvm,STBOLT,xlmelt , & + 1 +Warning: Unused variable ‘g0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3812:19: + + GLW,GSW,EMISS,RNET, & + 1 +Warning: Unused dummy argument ‘gsw’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3937:33: + + TDENOM,AA1,RHCS,H1,TSOB, SNPRIM, & + 1 +Warning: Unused variable ‘h1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3941:55: + + REAL :: RNET,rsmfrac,soiltfrac,hsn,icemelt,rr + 1 +Warning: Unused variable ‘hsn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3926:29: + + REAL :: CP,rovcp,G0,LV,xlvm,STBOLT,xlmelt , & + 1 +Warning: Unused variable ‘lv’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3923:26: + + REAL :: SNTH, NEWSN , & + 1 +Warning: Unused variable ‘newsn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3811:34: + + RHOSN,PATM,QVATM,QCATM, & + 1 +Warning: Unused dummy argument ‘qcatm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3815:24: + + tice,rhosice,capice,thdifice, & + 1 +Warning: Unused dummy argument ‘rhosice’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3809:42: + + meltfactor,rhonewsn,SNHEI_CRIT, & ! new + 1 +Warning: Unused dummy argument ‘snhei_crit’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3815:16: + + tice,rhosice,capice,thdifice, & + 1 +Warning: Unused dummy argument ‘tice’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3936:41: + + FKQ,R210,AA,BB,QS1,TS1,TQ2,TX2, & + 1 +Warning: Unused variable ‘tq2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3936:45: + + FKQ,R210,AA,BB,QS1,TS1,TQ2,TX2, & + 1 +Warning: Unused variable ‘tx2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3126:28: + + rho,vegfrac,alb,znt,lai, & + 1 +Warning: Unused dummy argument ‘alb’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3340:18: + + can,epot,fac,fltot,ft,fq,hft , & + 1 +Warning: Unused variable ‘can’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3343:18: + + DD1,CMC2MS,DRYCAN,WETCAN , & + 1 +Warning: Unused variable ‘dd1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3125:34: + + QKMS,TKMS,PC,cst,drip,infwater, & + 1 +Warning: Unused dummy argument ‘drip’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3340:27: + + can,epot,fac,fltot,ft,fq,hft , & + 1 +Warning: Unused variable ‘fac’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3340:36: + + can,epot,fac,fltot,ft,fq,hft , & + 1 +Warning: Unused variable ‘ft’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3339:26: + + REAL :: CP,rovcp,G0,LV,xlvm,STBOLT,xlmelt,dzstop , & + 1 +Warning: Unused variable ‘g0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3124:44: + + GLW,GSW,GSWin,EMISS,RNET,IVGTYP, & + 1 +Warning: Unused dummy argument ‘ivgtyp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3339:29: + + REAL :: CP,rovcp,G0,LV,xlvm,STBOLT,xlmelt,dzstop , & + 1 +Warning: Unused variable ‘lv’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3336:26: + + SNTH, NEWSN , & + 1 +Warning: Unused variable ‘newsn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3342:43: + + trans,zn,ci,cvw,tln,tavln,pi , & + 1 +Warning: Unused variable ‘pi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3120:43: + + meltfactor,rhonewsn,SNHEI_CRIT, & ! new + 1 +Warning: Unused dummy argument ‘snhei_crit’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3341:32: + + q1,ras,rhoice,sph , & + 1 +Warning: Unused variable ‘sph’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3342:20: + + trans,zn,ci,cvw,tln,tavln,pi , & + 1 +Warning: Unused variable ‘trans’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3342:23: + + trans,zn,ci,cvw,tln,tavln,pi , & + 1 +Warning: Unused variable ‘zn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:3126:32: + + rho,vegfrac,alb,znt,lai, & + 1 +Warning: Unused dummy argument ‘znt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2938:35: + + REAL :: FKT,D1,D2,D9,D10,DID,R211,R21,R22,R6,R7,D11 , & + 1 +Warning: Unused variable ‘did’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2855:38: + + zsmain,zshalf,DTDZS,DTDZS2,tbq, & + 1 +Warning: Unused dummy argument ‘dtdzs2’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2936:19: + + epot,fltot,ft,fq,hft,ras,cvw + 1 +Warning: Unused variable ‘epot’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2936:31: + + epot,fltot,ft,fq,hft,ras,cvw + 1 +Warning: Unused variable ‘fq’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2935:26: + + REAL :: CP,rovcp,G0,LV,STBOLT,xlmelt,dzstop , & + 1 +Warning: Unused variable ‘g0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2852:49: + + PRCPMS,RAINF,PATM,QVATM,QCATM,GLW,GSW, & + 1 +Warning: Unused dummy argument ‘gsw’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2935:29: + + REAL :: CP,rovcp,G0,LV,STBOLT,xlmelt,dzstop , & + 1 +Warning: Unused variable ‘lv’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2851:60: + + i,j,iland,isoil,delt,ktau,conflx,nzs,nddzs,nroot, & !--- input variables + 1 +Warning: Unused dummy argument ‘nroot’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2939:17: + + PI,H,FKQ,R210,AA,BB,PP,Q1,QS1,TS1,TQ2,TX2 , & + 1 +Warning: Unused variable ‘pi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2852:41: + + PRCPMS,RAINF,PATM,QVATM,QCATM,GLW,GSW, & + 1 +Warning: Unused dummy argument ‘qcatm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2854:24: + + tice,rhosice,capice,thdifice, & !--- sea ice parameters + 1 +Warning: Unused dummy argument ‘rhosice’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2854:16: + + tice,rhosice,capice,thdifice, & !--- sea ice parameters + 1 +Warning: Unused dummy argument ‘tice’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2939:52: + + PI,H,FKQ,R210,AA,BB,PP,Q1,QS1,TS1,TQ2,TX2 , & + 1 +Warning: Unused variable ‘tq2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2939:56: + + PI,H,FKQ,R210,AA,BB,PP,Q1,QS1,TS1,TQ2,TX2 , & + 1 +Warning: Unused variable ‘tx2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2931:25: + + REAL :: x,x1,x2,x4,tn,denom + 1 +Warning: Unused variable ‘x4’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2856:15: + + xlv,CP,rovcp,cw,stbolt,tabs, & !--- constants + 1 +Warning: Unused dummy argument ‘xlv’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2855:25: + + zsmain,zshalf,DTDZS,DTDZS2,tbq, & + 1 +Warning: Unused dummy argument ‘zshalf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2376:18: + + can,epot,fac,fltot,ft,fq,hft , & + 1 +Warning: Unused variable ‘can’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2379:18: + + DD1,CMC2MS,DRYCAN,WETCAN , & + 1 +Warning: Unused variable ‘dd1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2376:23: + + can,epot,fac,fltot,ft,fq,hft , & + 1 +Warning: Unused variable ‘epot’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2376:27: + + can,epot,fac,fltot,ft,fq,hft , & + 1 +Warning: Unused variable ‘fac’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2376:36: + + can,epot,fac,fltot,ft,fq,hft , & + 1 +Warning: Unused variable ‘ft’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2375:26: + + REAL :: CP,rovcp,G0,LV,STBOLT,xlmelt,dzstop , & + 1 +Warning: Unused variable ‘g0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2202:19: + + GLW,GSW,GSWin,EMISS,RNET, & + 1 +Warning: Unused dummy argument ‘gsw’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2375:29: + + REAL :: CP,rovcp,G0,LV,STBOLT,xlmelt,dzstop , & + 1 +Warning: Unused variable ‘lv’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2378:43: + + trans,zn,ci,cvw,tln,tavln,pi , & + 1 +Warning: Unused variable ‘pi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2377:32: + + q1,ras,rhoice,sph , & + 1 +Warning: Unused variable ‘sph’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2378:20: + + trans,zn,ci,cvw,tln,tavln,pi , & + 1 +Warning: Unused variable ‘trans’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:2378:23: + + trans,zn,ci,cvw,tln,tavln,pi , & + 1 +Warning: Unused variable ‘zn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:1161:41: + + ILAND,ISOIL,IVGTYP,ISLTYP,PRCPMS, & + 1 +Warning: Unused dummy argument ‘isltyp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:1357:26: + + RAINF, SNTH, NEWSN, PRCPMS, NEWSNMS , & + 1 +Warning: Unused variable ‘snth’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:1365:47: + + REAL :: VEGFRAC, snow_mosaic, snfr, vgfr + 1 +Warning: Unused variable ‘vgfr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:1364:45: + + REAL :: RNET,GSWNEW,GSWIN,EMISSN,ZNTSN,EMISS_snowfree + 1 +Warning: Unused variable ‘zntsn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:84:44: + + its,ite, jts,jte, kts,kte ) + 1 +Warning: Unused dummy argument ‘kte’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:84:40: + + its,ite, jts,jte, kts,kte ) + 1 +Warning: Unused dummy argument ‘kts’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:76:33: + + CP,RV,RD,G0,PI,LV,STBOLT, & + 1 +Warning: Unused dummy argument ‘pi’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:76:24: + + CP,RV,RD,G0,PI,LV,STBOLT, & + 1 +Warning: Unused dummy argument ‘rv’ at (1) [-Wunused-dummy-argument] +[ 12%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:7181:0: + + SUBROUTINE RUCLSM_SOILVEGPARM( debug_print,MMINLURUC, MMINSL) + +Warning: ‘ruclsm_soilvegparm’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_ruclsm.F90:7511:0: - call diff_1d_ptend(levs, dtstab, Fw, Kpt, del(i,:), Sw) + SUBROUTINE SOILIN (ISLTYP, DQM, REF, PSIS, QMIN, BCLH ) + +Warning: ‘soilin’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp_domains.F90:638:38: + + integer(LONG_KIND), parameter :: ADDR2_BASE=Z'0000000000010000' + 1 +Warning: Conversion from ‘INTEGER(16)’ to ‘INTEGER(8)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp_domains.F90:663:35: + + integer(LONG_KIND), parameter :: GT_BASE=Z'0000000000000100' ! Workaround for 64bit int init problem + 1 +Warning: Conversion from ‘INTEGER(16)’ to ‘INTEGER(8)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp_domains.F90:666:35: + + integer(LONG_KIND), parameter :: KE_BASE=Z'0001000000000000' ! Workaround for 64bit int init problem + 1 +Warning: Conversion from ‘INTEGER(16)’ to ‘INTEGER(8)’ at (1) [-Wconversion] +[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg_ruc.F90:40:9: + + & 0.63, 0.0, 0.0, 0.0, 0.0, 0.0, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg_ruc.F90:41:9: + + & 0.0 , 0.0, 0.0, 0.0, 0.0, 0.0, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg_ruc.F90:42:9: + + & 0.0 , 0.0, 0.0, 0.0, 0.0, 0.0, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg_ruc.F90:43:9: + + & 0.0 , 0.0, 0.0, 0.0, 0.0, 0.0/) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg_ruc.F90:49:9: + + & 150.0, 0.0, 0.0, 0.0, 0.0, 0.0, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg_ruc.F90:50:9: + + & 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg_ruc.F90:51:9: + + & 0.0, 0.0, 0.0, 0.0, 0.0, 0.0/) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg_ruc.F90:54:9: + + & 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg_ruc.F90:55:9: + + & 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg_ruc.F90:56:9: + + & 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg_ruc.F90:57:9: + + & 0.0, 0.0, 0.0, 0.0, 0.0, 0.0/) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg_ruc.F90:60:9: + + & 36.35, 42.00, 42.00, 42.00, 42.00, 36.35, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg_ruc.F90:61:9: + + & 42.00, 0.00, 0.00, 0.00, 0.00, 0.00, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg_ruc.F90:62:9: + + & 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg_ruc.F90:63:9: + + & 0.00, 0.00, 0.00, 0.00, 0.00, 0.00/) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg_ruc.F90:68:9: + + & 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg_ruc.F90:69:9: + + & 0.000, 0.000, 0.000, 0.000, 0.000, 0.000/) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg_ruc.F90:20:35: + + subroutine set_soilveg_ruc(me,isot,ivet,nlunit) + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/set_soilveg_ruc.F90:20:52: + + subroutine set_soilveg_ruc(me,isot,ivet,nlunit) + 1 +Warning: Unused dummy argument ‘nlunit’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_do_redistribute.h:47:30: + + wordlen = size(TRANSFER(buffer(1),mpp_domains_stack)) + 1 +Warning: Intrinsic TRANSFER at (1) has partly undefined result: source size 4 < result size 8 [-Wsurprising] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_do_redistribute.h:47:30: + + wordlen = size(TRANSFER(buffer(1),mpp_domains_stack)) + 1 +Warning: Intrinsic TRANSFER at (1) has partly undefined result: source size 4 < result size 8 [-Wsurprising] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp_domains.F90:642:61: + + integer, dimension(MAX_ADDRS2),save :: a2_salvage=-9999 ! freed indices of addr2 + 1 +Warning: Unused PRIVATE module variable ‘a2_salvage’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp_domains.F90:634:59: + + integer, dimension(MAX_ADDRS),save :: a_salvage=-9999 ! freed idx list of addr + 1 +Warning: Unused PRIVATE module variable ‘a_salvage’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp_domains.F90:623:52: + + logical :: complete_update = .false. + 1 +Warning: Unused PRIVATE module variable ‘complete_update’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp_domains.F90:658:79: + + integer, dimension(MAX_FIELDS),save :: dc_salvage=-9999 ! freed indices of d_comm + 1 +Warning: Unused PRIVATE module variable ‘dc_salvage’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp_domains.F90:627:60: + + integer :: group_update_buffer_pos = 0 + 1 +Warning: Unused PRIVATE module variable ‘group_update_buffer_pos’ declared at (1) [-Wunused-value] +/glade/u/apps/ch/opt/mpt/2.19/include/mpif.h:561:54: + + integer MPI_STATUSES_IGNORE(MPI_STATUS_SIZE,1) + 1 +Warning: Unused PRIVATE module variable ‘mpi_statuses_ignore’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp_domains.F90:622:49: + + logical :: start_update = .true. + 1 +Warning: Unused PRIVATE module variable ‘start_update’ declared at (1) [-Wunused-value] +[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ug.h:45:71: + + integer :: l, k, m, n, nd, nwords, lpos, rpos, ioff, joff, from_pe, tile_id + 1 +Warning: Unused variable ‘from_pe’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ug.h:45:56: + + integer :: l, k, m, n, nd, nwords, lpos, rpos, ioff, joff, from_pe, tile_id + 1 +Warning: Unused variable ‘ioff’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ug.h:45:62: + + integer :: l, k, m, n, nd, nwords, lpos, rpos, ioff, joff, from_pe, tile_id + 1 +Warning: Unused variable ‘joff’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ug.h:48:22: + + logical :: xonly, yonly, root_only, global_on_this_pe + 1 +Warning: Unused variable ‘xonly’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ug.h:48:29: + + logical :: xonly, yonly, root_only, global_on_this_pe + 1 +Warning: Unused variable ‘yonly’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ug.h:45:71: + + integer :: l, k, m, n, nd, nwords, lpos, rpos, ioff, joff, from_pe, tile_id + 1 +Warning: Unused variable ‘from_pe’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ug.h:45:56: + + integer :: l, k, m, n, nd, nwords, lpos, rpos, ioff, joff, from_pe, tile_id + 1 +Warning: Unused variable ‘ioff’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ug.h:45:62: + + integer :: l, k, m, n, nd, nwords, lpos, rpos, ioff, joff, from_pe, tile_id + 1 +Warning: Unused variable ‘joff’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ug.h:48:22: + + logical :: xonly, yonly, root_only, global_on_this_pe + 1 +Warning: Unused variable ‘xonly’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ug.h:48:29: + + logical :: xonly, yonly, root_only, global_on_this_pe + 1 +Warning: Unused variable ‘yonly’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ug.h:45:71: + + integer :: l, k, m, n, nd, nwords, lpos, rpos, ioff, joff, from_pe, tile_id + 1 +Warning: Unused variable ‘from_pe’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ug.h:45:56: + + integer :: l, k, m, n, nd, nwords, lpos, rpos, ioff, joff, from_pe, tile_id + 1 +Warning: Unused variable ‘ioff’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ug.h:45:62: + + integer :: l, k, m, n, nd, nwords, lpos, rpos, ioff, joff, from_pe, tile_id + 1 +Warning: Unused variable ‘joff’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ug.h:48:22: + + logical :: xonly, yonly, root_only, global_on_this_pe + 1 +Warning: Unused variable ‘xonly’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ug.h:48:29: + + logical :: xonly, yonly, root_only, global_on_this_pe + 1 +Warning: Unused variable ‘yonly’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_unstruct_domain.inc:713:19: + + integer(INT_KIND) :: i !NULL() + 1 +Warning: Unused variable ‘update’ declared at (1) [-Wunused-variable] +[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_domains_define.inc:668:66: + + integer :: msgsize, l, p, is, ie, js, je, from_pe + 1 +Warning: Unused variable ‘from_pe’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_domains_define.inc:668:49: + + integer :: msgsize, l, p, is, ie, js, je, from_pe + 1 +Warning: Unused variable ‘ie’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_domains_define.inc:668:45: + + integer :: msgsize, l, p, is, ie, js, je, from_pe + 1 +Warning: Unused variable ‘is’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_domains_define.inc:668:57: + + integer :: msgsize, l, p, is, ie, js, je, from_pe + 1 +Warning: Unused variable ‘je’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_domains_define.inc:668:53: + + integer :: msgsize, l, p, is, ie, js, je, from_pe + 1 +Warning: Unused variable ‘js’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_domains_define.inc:668:38: + + integer :: msgsize, l, p, is, ie, js, je, from_pe + 1 +Warning: Unused variable ‘l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_domains_define.inc:668:35: + + integer :: msgsize, l, p, is, ie, js, je, from_pe + 1 +Warning: Unused variable ‘msgsize’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_domains_define.inc:668:41: + + integer :: msgsize, l, p, is, ie, js, je, from_pe + 1 +Warning: Unused variable ‘p’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_domains_define.inc:667:36: + + character(len=1) :: position + 1 +Warning: Unused variable ‘position’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_domains_define.inc:665:40: + + type(overlapSpec), pointer :: update=>NULL() + 1 +Warning: Unused variable ‘update’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_domains_define.inc:320:48: + + integer :: ndiv, n, isg, ieg, i + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_domains_define.inc:166:25: + + integer :: ndiv, imax, ndmax + 1 +Warning: Unused variable ‘imax’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_domains_define.inc:167:24: + + integer :: is, ie, n + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_domains_define.inc:166:32: + + integer :: ndiv, imax, ndmax + 1 +Warning: Unused variable ‘ndmax’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_domains_util.inc:1673:47: + + integer :: buffer_pos_recv(3*MAXOVERLAP), buffer_pos_send(3*MAXOVERLAP) + 1 +Warning: Unused variable ‘buffer_pos_recv’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_domains_util.inc:1673:78: + + integer :: buffer_pos_recv(3*MAXOVERLAP), buffer_pos_send(3*MAXOVERLAP) + 1 +Warning: Unused variable ‘buffer_pos_send’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_domains_util.inc:1674:41: + + integer :: recv_size(3*MAXOVERLAP), send_size(3*MAXOVERLAP) + 1 +Warning: Unused variable ‘recv_size’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_domains_util.inc:1672:64: + + integer :: pelist(3*MAXOVERLAP), to_pe_list(3*MAXOVERLAP) + 1 +Warning: Unused variable ‘to_pe_list’ declared at (1) [-Wunused-variable] +[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_define_nest_domains.inc:719:39: + + integer :: whalo, ehalo, shalo, nhalo + 1 +Warning: Unused variable ‘ehalo’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_define_nest_domains.inc:721:45: + + integer :: isg_fine, ieg_fine, jsg_fine, jeg_fine + 1 +Warning: Unused variable ‘ieg_fine’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_define_nest_domains.inc:715:35: + + logical :: is_first + 1 +Warning: Unused variable ‘is_first’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_define_nest_domains.inc:721:35: + + integer :: isg_fine, ieg_fine, jsg_fine, jeg_fine + 1 +Warning: Unused variable ‘isg_fine’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_define_nest_domains.inc:721:65: + + integer :: isg_fine, ieg_fine, jsg_fine, jeg_fine + 1 +Warning: Unused variable ‘jeg_fine’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_define_nest_domains.inc:721:55: + + integer :: isg_fine, ieg_fine, jsg_fine, jeg_fine + 1 +Warning: Unused variable ‘jsg_fine’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_define_nest_domains.inc:719:53: + + integer :: whalo, ehalo, shalo, nhalo + 1 +Warning: Unused variable ‘nhalo’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_define_nest_domains.inc:719:46: + + integer :: whalo, ehalo, shalo, nhalo + 1 +Warning: Unused variable ‘shalo’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_define_nest_domains.inc:719:32: + + integer :: whalo, ehalo, shalo, nhalo + 1 +Warning: Unused variable ‘whalo’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_MP_generic.F90:87:83: + + totsnw, totgrp, cnvprcpb, totprcpb, toticeb, totsnwb, totgrpb, dt3dt, dq3dt, rain_cpl, rainc_cpl, snow_cpl, pwat, & + 1 +Warning: Unused dummy argument ‘dq3dt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_MP_generic.F90:85:95: + + rann, xlat, xlon, gt0, gq0, prsl, prsi, phii, tsfc, ice, snow, graupel, save_t, save_qv, rain0, ice0, snow0, & + 1 +Warning: Unused dummy argument ‘save_qv’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_PBL_generic.F90:86:53: + + imp_physics_zhao_carr, imp_physics_mg, cplchm, ltaerosol, hybedmf, do_shoc, & + 1 +Warning: Unused dummy argument ‘cplchm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_PBL_generic.F90:273:118: + + dusfci_diag, dvsfci_diag, dtsfci_diag, dqsfci_diag, dt3dt, du3dt_PBL, du3dt_OGWD, dv3dt_PBL, dv3dt_OGWD, dq3dt, & + 1 +Warning: Unused dummy argument ‘dq3dt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_PBL_generic.F90:274:19: + + dq3dt_ozone, rd, cp,fvirt, hvap, t1, q1, prsl, hflx, ushfsfci, oceanfrac, fice, dusfc_cice, dvsfc_cice, dtsfc_cice, & + 1 +Warning: Unused dummy argument ‘dq3dt_ozone’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_PBL_generic.F90:275:18: + + dqsfc_cice, wet, dry, icy, wind, stress_ocn, hflx_ocn, evap_ocn, ugrs1, vgrs1, dkt_cpl, dkt, errmsg, errflg) + 1 +Warning: Unused dummy argument ‘dqsfc_cice’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_PBL_generic.F90:274:122: + + dq3dt_ozone, rd, cp,fvirt, hvap, t1, q1, prsl, hflx, ushfsfci, oceanfrac, fice, dusfc_cice, dvsfc_cice, dtsfc_cice, & + 1 +Warning: Unused dummy argument ‘dtsfc_cice’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_PBL_generic.F90:274:98: + + dq3dt_ozone, rd, cp,fvirt, hvap, t1, q1, prsl, hflx, ushfsfci, oceanfrac, fice, dusfc_cice, dvsfc_cice, dtsfc_cice, & + 1 +Warning: Unused dummy argument ‘dusfc_cice’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_PBL_generic.F90:274:110: + + dq3dt_ozone, rd, cp,fvirt, hvap, t1, q1, prsl, hflx, ushfsfci, oceanfrac, fice, dusfc_cice, dvsfc_cice, dtsfc_cice, & + 1 +Warning: Unused dummy argument ‘dvsfc_cice’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_PBL_generic.F90:274:86: + + dq3dt_ozone, rd, cp,fvirt, hvap, t1, q1, prsl, hflx, ushfsfci, oceanfrac, fice, dusfc_cice, dvsfc_cice, dtsfc_cice, & + 1 +Warning: Unused dummy argument ‘fice’ at (1) [-Wunused-dummy-argument] +[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90:17:82: + + subroutine GFS_SCNV_generic_pre_run (im, levs, ldiag3d, gt0, gq0_water_vapor, & + 1 +Warning: Unused dummy argument ‘gq0_water_vapor’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90:18:23: + + save_t, save_qv, errmsg, errflg) + 1 +Warning: Unused dummy argument ‘save_qv’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90:73:22: + + rainc, cnvprcp, cnvprcpb, cnvw_phy_f3d, cnvc_phy_f3d, & + 1 +Warning: Unused dummy argument ‘cnvprcp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90:73:32: + + rainc, cnvprcp, cnvprcpb, cnvw_phy_f3d, cnvc_phy_f3d, & + 1 +Warning: Unused dummy argument ‘cnvprcpb’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90:71:73: + + frain, gt0, gq0_water_vapor, save_t, save_qv, dqdti, dt3dt, dq3dt, clw, & + 1 +Warning: Unused dummy argument ‘dq3dt’ at (1) [-Wunused-dummy-argument] +[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_composites.F90:29:80: + + frland, dry, icy, lake, ocean, wet, cice, cimin, zorl, zorlo, zorll, zorl_ocn, & + 1 +Warning: Unused dummy argument ‘cimin’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_composites.F90:29:55: + + frland, dry, icy, lake, ocean, wet, cice, cimin, zorl, zorlo, zorll, zorl_ocn, & + 1 +Warning: Unused dummy argument ‘lake’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_composites.F90:28:98: + + subroutine GFS_surface_composites_pre_run (im, frac_grid, flag_cice, cplflx, landfrac, lakefrac, oceanfrac, & + 1 +Warning: Unused dummy argument ‘lakefrac’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_composites.F90:29:62: + + frland, dry, icy, lake, ocean, wet, cice, cimin, zorl, zorlo, zorll, zorl_ocn, & + 1 +Warning: Unused dummy argument ‘ocean’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_composites.F90:28:109: + + subroutine GFS_surface_composites_pre_run (im, frac_grid, flag_cice, cplflx, landfrac, lakefrac, oceanfrac, & + 1 +Warning: Unused dummy argument ‘oceanfrac’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_composites.F90:32:69: + + weasd_lnd, weasd_ice, ep1d_ice, tsfc, tsfco, tsfcl, tsfc_ocn, tsfc_lnd, & + 1 +Warning: Unused dummy argument ‘tsfc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_composites.F90:33:61: + + tsfc_ice, tisfc, tice, tsurf, tsurf_ocn, tsurf_lnd, tsurf_ice, gflx_ice, & + 1 +Warning: Unused dummy argument ‘tsurf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_composites.F90:287:16: + + im, cplflx, frac_grid, flag_cice, islmsk, dry, wet, icy, landfrac, lakefrac, oceanfrac, & + 1 +Warning: Unused dummy argument ‘cplflx’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_composites.F90:287:61: + + im, cplflx, frac_grid, flag_cice, islmsk, dry, wet, icy, landfrac, lakefrac, oceanfrac, & + 1 +Warning: Unused dummy argument ‘icy’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_composites.F90:287:81: + + im, cplflx, frac_grid, flag_cice, islmsk, dry, wet, icy, landfrac, lakefrac, oceanfrac, & + 1 +Warning: Unused dummy argument ‘lakefrac’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_composites.F90:287:92: + + im, cplflx, frac_grid, flag_cice, islmsk, dry, wet, icy, landfrac, lakefrac, oceanfrac, & + 1 +Warning: Unused dummy argument ‘oceanfrac’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_composites.F90:293:111: + + ep1d_lnd, ep1d_ice, weasd, weasd_ocn, weasd_lnd, weasd_ice, snowd, snowd_ocn, snowd_lnd, snowd_ice, tprcp, tprcp_ocn, & + 1 +Warning: Unused dummy argument ‘tprcp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_composites.F90:294:26: + + tprcp_lnd, tprcp_ice, evap, evap_ocn, evap_lnd, evap_ice, hflx, hflx_ocn, hflx_lnd, hflx_ice, qss, qss_ocn, qss_lnd, & + 1 +Warning: Unused dummy argument ‘tprcp_ice’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_composites.F90:294:15: + + tprcp_lnd, tprcp_ice, evap, evap_ocn, evap_lnd, evap_ice, hflx, hflx_ocn, hflx_lnd, hflx_ice, qss, qss_ocn, qss_lnd, & + 1 +Warning: Unused dummy argument ‘tprcp_lnd’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_composites.F90:293:122: + + ep1d_lnd, ep1d_ice, weasd, weasd_ocn, weasd_lnd, weasd_ice, snowd, snowd_ocn, snowd_lnd, snowd_ice, tprcp, tprcp_ocn, & + 1 +Warning: Unused dummy argument ‘tprcp_ocn’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_composites.F90:291:91: + + uustar_ice, fm10, fm10_ocn, fm10_lnd, fm10_ice, fh2, fh2_ocn, fh2_lnd, fh2_ice, tsurf, tsurf_ocn, tsurf_lnd, tsurf_ice, & + 1 +Warning: Unused dummy argument ‘tsurf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_composites.F90:291:124: + + uustar_ice, fm10, fm10_ocn, fm10_lnd, fm10_ice, fh2, fh2_ocn, fh2_lnd, fh2_ice, tsurf, tsurf_ocn, tsurf_lnd, tsurf_ice, & + 1 +Warning: Unused dummy argument ‘tsurf_ice’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_composites.F90:291:113: + + uustar_ice, fm10, fm10_ocn, fm10_lnd, fm10_ice, fh2, fh2_ocn, fh2_lnd, fh2_ice, tsurf, tsurf_ocn, tsurf_lnd, tsurf_ice, & + 1 +Warning: Unused dummy argument ‘tsurf_lnd’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_composites.F90:291:102: + + uustar_ice, fm10, fm10_ocn, fm10_lnd, fm10_ice, fh2, fh2_ocn, fh2_lnd, fh2_ice, tsurf, tsurf_ocn, tsurf_lnd, tsurf_ice, & + 1 +Warning: Unused dummy argument ‘tsurf_ocn’ at (1) [-Wunused-dummy-argument] +[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90:84:49: + + flag_guess, flag_iter, dry, wet, icy, nstf_name1, errmsg, errflg) + 1 +Warning: Unused dummy argument ‘icy’ at (1) [-Wunused-dummy-argument] +[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/h2ophys.f:30:54: + + & h2opltc, h2o_coeff, ldiag3d, me, & + 1 +Warning: Unused dummy argument ‘ldiag3d’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/h2ophys.f:30:58: + + & h2opltc, h2o_coeff, ldiag3d, me, & + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90:135:24: + + logical :: counter + 1 +Warning: Unused variable ‘counter’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90:134:26: + + REAL :: dbz1(2),dbzk,dbzk1 + 1 +Warning: Unused variable ‘dbzk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90:134:32: + + REAL :: dbz1(2),dbzk,dbzk1 + 1 +Warning: Unused variable ‘dbzk1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90:129:41: + + integer :: i,k,ll,ipt,kpt + 1 +Warning: Unused variable ‘ipt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90:129:45: + + integer :: i,k,ll,ipt,kpt + 1 +Warning: Unused variable ‘kpt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90:132:36: + + real, dimension(im) :: zintsfc + 1 +Warning: Unused variable ‘zintsfc’ declared at (1) [-Wunused-variable] +[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozphys_2015.f:58:67: + + & prsl, prdout, pl_coeff, delp, ldiag3d, & + 1 +Warning: Unused dummy argument ‘ldiag3d’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozphys_2015.f:60:32: + + & me, errmsg, errflg) + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozphys_2015.f:59:34: + + & ozp1,ozp2,ozp3,ozp4,con_g, & + 1 +Warning: Unused dummy argument ‘ozp1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozphys_2015.f:59:39: + + & ozp1,ozp2,ozp3,ozp4,con_g, & + 1 +Warning: Unused dummy argument ‘ozp2’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozphys_2015.f:59:44: + + & ozp1,ozp2,ozp3,ozp4,con_g, & + 1 +Warning: Unused dummy argument ‘ozp3’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozphys_2015.f:59:49: + + & ozp1,ozp2,ozp3,ozp4,con_g, & + 1 +Warning: Unused dummy argument ‘ozp4’ at (1) [-Wunused-dummy-argument] +[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rayleigh_damp.f:28:25: + + & LEVR,pgr,PRSL,PRSLRD0,ral_ts,errmsg,errflg) + 1 +Warning: Unused dummy argument ‘pgr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rayleigh_damp.f:82:34: + + real(kind=kind_phys) tx1(im) + 1 +Warning: Unused variable ‘tx1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/rayleigh_damp.f:80:67: + + real(kind=kind_phys) DTAUX, DTAUY, wrk1, rtrd1, rfactrd, wrk2 + 1 +Warning: Unused variable ‘wrk2’ declared at (1) [-Wunused-variable] +[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_diag_post.F90:18:72: + + subroutine sfc_diag_post_run (im, lsm, lsm_noahmp, dry, lssav, dtf, con_eps, con_epsm1, pgr,& + 1 +Warning: Unused dummy argument ‘dtf’ at (1) [-Wunused-dummy-argument] +[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_diff.f:63:44: + + subroutine sfc_diff_run (im,rvrdm1,eps,epsm1,grav, & !intent(in) + 1 +Warning: Unused dummy argument ‘eps’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_diff.f:63:50: + + subroutine sfc_diff_run (im,rvrdm1,eps,epsm1,grav, & !intent(in) + 1 +Warning: Unused dummy argument ‘epsm1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_diff.f:65:45: + + & prsl1,prslki,prsik1,prslk1, & !intent(in) + 1 +Warning: Unused dummy argument ‘prsik1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_diff.f:65:31: + + & prsl1,prslki,prsik1,prslk1, & !intent(in) + 1 +Warning: Unused dummy argument ‘prsl1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_diff.f:65:52: + + & prsl1,prslki,prsik1,prslk1, & !intent(in) + 1 +Warning: Unused dummy argument ‘prslk1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_diff.f:64:28: + + & ps,t1,q1,z1,wind, & !intent(in) + 1 +Warning: Unused dummy argument ‘ps’ at (1) [-Wunused-dummy-argument] +[ 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/funcphys.f90:3075:7: + + jx=min(xj,nxtlcl-1._krealfp) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/funcphys.f90:3076:7: + + jy=min(yj,nytlcl-1._krealfp) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/funcphys.f90:2871:7: + + jx=min(xj,nxrkap-1._krealfp) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/funcphys.f90:2614:7: + + jx=min(xj,nxpkap-1._krealfp) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/funcphys.f90:2267:7: + + jx=min(xj,nxma-1._krealfp) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/funcphys.f90:2268:7: + + jy=min(yj,nyma-1._krealfp) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/funcphys.f90:1984:9: + + jx=min(xj,nxthe-1._krealfp) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/funcphys.f90:1985:9: + + jy=min(yj,nythe-1._krealfp) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/funcphys.f90:1649:7: + + jx=min(xj,nxtdp-1._krealfp) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/funcphys.f90:1359:7: + + jx=min(xj,nxtdpi-1._krealfp) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/funcphys.f90:1072:7: + + jx=min(xj,nxtdpl-1._krealfp) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/funcphys.f90:831:7: + + jx=min(xj,nxpvs-1._krealfp) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/funcphys.f90:618:7: + + jx=min(xj,nxpvsi-1._krealfp) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/funcphys.f90:405:7: + + jx=min(xj,nxpvsl-1._krealfp) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/funcphys.f90:3269:61: + + real(krealfp) tr,pvdew,tlcl,ta,pvlcl,el,dpvlcl,terr,terrp + 1 +Warning: Unused variable ‘terrp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/funcphys.f90:2130:43: + + real(krealfp) p,tr,pv,pd,el,expo,expmax + 1 +Warning: Unused variable ‘expmax’ declared at (1) [-Wunused-variable] +[ 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 +[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:1518:6: + + & qWT1D,qSHEAR1D,qBUOY1D,qDISS1D, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:6079:21: + + real :: diff,exn,t,th,qs,qcold + 1 +Warning: Unused variable ‘th’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:5306:60: + + REAL :: sigq,xl,tlk,qsat_tl,rsl,cpm,a,qmq,mf_cf,Q1,diffqt,& + 1 +Warning: Unused variable ‘diffqt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:5171:29: + + & kts,kte,dt,zw,dz,p, & + 1 +Warning: Unused dummy argument ‘dt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:5258:46: + + REAL,DIMENSION(KTS:KTE,1:NUP) :: ENT,ENTf + 1 +Warning: Unused variable ‘entf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:5259:45: + + INTEGER,DIMENSION(KTS:KTE,1:NUP) :: ENTi + 1 +Warning: Unused variable ‘enti’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:5265:31: + + Wn2,Wn,EntEXP,EntW,BCOEFF,THVkm1,THVk,Pk + 1 +Warning: Unused variable ‘entw’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:5300:14: + + REAL :: ERF + 1 +Warning: Unused variable ‘erf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:5197:23: + + & F_QC,F_QI, & + 1 +Warning: Unused dummy argument ‘f_qc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:5197:28: + + & F_QC,F_QI, & + 1 +Warning: Unused dummy argument ‘f_qi’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:5198:22: + + F_QNC,F_QNI, & + 1 +Warning: Unused dummy argument ‘f_qnc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:5198:28: + + F_QNC,F_QNI, & + 1 +Warning: Unused dummy argument ‘f_qni’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:5199:34: + + & F_QNWFA,F_QNIFA, & + 1 +Warning: Unused dummy argument ‘f_qnifa’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:5199:26: + + & F_QNWFA,F_QNIFA, & + 1 +Warning: Unused dummy argument ‘f_qnwfa’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:5179:40: + + & ust,flt,flq,flqv,flqc, & + 1 +Warning: Unused dummy argument ‘flqc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:5179:35: + + & ust,flt,flq,flqv,flqc, & + 1 +Warning: Unused dummy argument ‘flqv’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:5180:28: + + & pblh,kpbl,DX,landsea,ts, & + 1 +Warning: Unused dummy argument ‘kpbl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:5245:45: + + s_awqke, s_aw2 + 1 +Warning: Unused variable ‘s_aw2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:5204:25: + + &spp_pbl,rstoch_col) + 1 +Warning: Unused dummy argument ‘spp_pbl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:5179:22: + + & ust,flt,flq,flqv,flqc, & + 1 +Warning: Unused dummy argument ‘ust’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:5265:16: + + Wn2,Wn,EntEXP,EntW,BCOEFF,THVkm1,THVk,Pk + 1 +Warning: Unused variable ‘wn2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:5287:47: + + REAL :: cn,c,l,n,an2,hux,maxwidth,wspd_pbl,cloud_base,width_flx + 1 +Warning: Unused variable ‘wspd_pbl’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:5042:16: + + INTEGER :: I,J,K,kthv,ktke,kzi,kzi2 + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:5042:18: + + INTEGER :: I,J,K,kthv,ktke,kzi,kzi2 + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:4933:32: + + &,RESTART,ALLOWED_TO_READ,LEVEL & + 1 +Warning: Unused dummy argument ‘allowed_to_read’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:4934:12: + + &,IDS,IDE,JDS,JDE,KDS,KDE & + 1 +Warning: Unused dummy argument ‘ids’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:4934:20: + + &,IDS,IDE,JDS,JDE,KDS,KDE & + 1 +Warning: Unused dummy argument ‘jds’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:4934:28: + + &,IDS,IDE,JDS,JDE,KDS,KDE & + 1 +Warning: Unused dummy argument ‘kds’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:4931:12: + + &,QKE,TKE_PBL,EXCH_H & + 1 +Warning: Unused dummy argument ‘qke’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:3854:14: + + &ust,ch,hfx,qfx,rmol,wspd, & + 1 +Warning: Unused dummy argument ‘ch’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:4015:52: + + REAL, DIMENSION(KTS:KTE) :: dth1mf,dqv1mf,dqc1mf,du1mf,dv1mf + 1 +Warning: Unused variable ‘dqc1mf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:3983:64: + + REAL, DIMENSION(KTS:KTE) :: qWT1,qSHEAR1,qBUOY1,qDISS1,dqke1,diss_heat + 1 +Warning: Unused variable ‘dqke1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:4015:45: + + REAL, DIMENSION(KTS:KTE) :: dth1mf,dqv1mf,dqc1mf,du1mf,dv1mf + 1 +Warning: Unused variable ‘dqv1mf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:4015:38: + + REAL, DIMENSION(KTS:KTE) :: dth1mf,dqv1mf,dqc1mf,du1mf,dv1mf + 1 +Warning: Unused variable ‘dth1mf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:4015:58: + + REAL, DIMENSION(KTS:KTE) :: dth1mf,dqv1mf,dqc1mf,du1mf,dv1mf + 1 +Warning: Unused variable ‘du1mf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:4015:64: + + REAL, DIMENSION(KTS:KTE) :: dth1mf,dqv1mf,dqc1mf,du1mf,dv1mf + 1 +Warning: Unused variable ‘dv1mf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:3888:16: + + &,IDS,IDE,JDS,JDE,KDS,KDE & + 1 +Warning: Unused dummy argument ‘ide’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:3888:12: + + &,IDS,IDE,JDS,JDE,KDS,KDE & + 1 +Warning: Unused dummy argument ‘ids’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:3888:24: + + &,IDS,IDE,JDS,JDE,KDS,KDE & + 1 +Warning: Unused dummy argument ‘jde’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:3888:20: + + &,IDS,IDE,JDS,JDE,KDS,KDE & + 1 +Warning: Unused dummy argument ‘jds’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:3888:32: + + &,IDS,IDE,JDS,JDE,KDS,KDE & + 1 +Warning: Unused dummy argument ‘kde’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:3888:28: + + &,IDS,IDE,JDS,JDE,KDS,KDE & + 1 +Warning: Unused dummy argument ‘kds’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:3853:21: + + &xland,ts,qsfc,qcg,ps, & + 1 +Warning: Unused dummy argument ‘qsfc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:4006:43: + + REAL, DIMENSION(KTS:KTE) :: thl,thvl,tl,sqv,sqc,sqi,sqw,& + 1 +Warning: Unused variable ‘tl’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:4035:53: + + REAL :: bfxpbl,dthvx,tmp1,temps,templ,zl1,wstar3_2 + 1 +Warning: Unused variable ‘wstar3_2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:3849:22: + + &delt,dz,dx,znt, & + 1 +Warning: Unused dummy argument ‘znt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90:233:59: + + subroutine init_oro_gws(nwaves, nazdir, nstoch, effac, & + 1 +Warning: Unused dummy argument ‘effac’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90:234:39: + + lonr, kxw, cdmbgwd ) + 1 +Warning: Unused dummy argument ‘kxw’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90:305:39: + + lonr, kxw, cgwf) + 1 +Warning: Unused dummy argument ‘kxw’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2839:20: + + &bl_mynn_edmf, & + 1 +Warning: Unused dummy argument ‘bl_mynn_edmf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2835:19: + + &cldfra_bl1d, & + 1 +Warning: Unused dummy argument ‘cldfra_bl1d’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2823:19: + + &tsq,qsq,cov, & + 1 +Warning: Unused dummy argument ‘cov’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2883:46: + + REAL, DIMENSION(kts:kte) :: dtz,vt,vq,dfhc,dfmc !Kh for clouds (Pr < 2) + 1 +Warning: Unused variable ‘dfhc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2883:51: + + REAL, DIMENSION(kts:kte) :: dtz,vt,vq,dfhc,dfmc !Kh for clouds (Pr < 2) + 1 +Warning: Unused variable ‘dfmc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2825:19: + + &dfm,dfh,dfq, & + 1 +Warning: Unused dummy argument ‘dfq’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2890:22: + + REAL :: rhs,gfluxm,gfluxp,dztop,maxdfh,mindfh,maxcf,maxKh,zw + 1 +Warning: Unused variable ‘gfluxm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2890:29: + + REAL :: rhs,gfluxm,gfluxp,dztop,maxdfh,mindfh,maxcf,maxKh,zw + 1 +Warning: Unused variable ‘gfluxp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2815:29: + + &levflag,grav_settling, & + 1 +Warning: Unused dummy argument ‘grav_settling’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2891:26: + + REAL :: grav_settling2,vdfg1 !Katata-fogdes + 1 +Warning: Unused variable ‘grav_settling2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2893:19: + + INTEGER :: k,kk + 1 +Warning: Unused variable ‘kk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2836:33: + + &ztop_shallow,ktop_shallow, & + 1 +Warning: Unused dummy argument ‘ktop_shallow’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2815:15: + + &levflag,grav_settling, & + 1 +Warning: Unused dummy argument ‘levflag’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2890:55: + + REAL :: rhs,gfluxm,gfluxp,dztop,maxdfh,mindfh,maxcf,maxKh,zw + 1 +Warning: Unused variable ‘maxcf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2890:42: + + REAL :: rhs,gfluxm,gfluxp,dztop,maxdfh,mindfh,maxcf,maxKh,zw + 1 +Warning: Unused variable ‘maxdfh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2890:61: + + REAL :: rhs,gfluxm,gfluxp,dztop,maxdfh,mindfh,maxcf,maxKh,zw + 1 +Warning: Unused variable ‘maxkh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2890:49: + + REAL :: rhs,gfluxm,gfluxp,dztop,maxdfh,mindfh,maxcf,maxKh,zw + 1 +Warning: Unused variable ‘mindfh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2886:44: + + REAL, DIMENSION(kts:kte) :: zfac,plumeKh + 1 +Warning: Unused variable ‘plumekh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2821:38: + + &ust,flt,flq,flqv,flqc,wspd,qcg, & + 1 +Warning: Unused dummy argument ‘qcg’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2823:15: + + &tsq,qsq,cov, & + 1 +Warning: Unused dummy argument ‘qsq’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2890:15: + + REAL :: rhs,gfluxm,gfluxp,dztop,maxdfh,mindfh,maxcf,maxKh,zw + 1 +Warning: Unused variable ‘rhs’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90:375:70: + + subroutine init_fjet_gws(nwaves, nazdir, nstoch, effac, lonr, kxw) + 1 +Warning: Unused dummy argument ‘kxw’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90:375:65: + + subroutine init_fjet_gws(nwaves, nazdir, nstoch, effac, lonr, kxw) + 1 +Warning: Unused dummy argument ‘lonr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2817:17: + + &u,v,th,tk,qv,qc,qi,qnc,qni, & + 1 +Warning: Unused dummy argument ‘tk’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2823:11: + + &tsq,qsq,cov, & + 1 +Warning: Unused dummy argument ‘tsq’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2828:13: + + &vdfg1,diss_heat, & + 1 +Warning: Unused dummy argument ‘vdfg1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2883:41: + + REAL, DIMENSION(kts:kte) :: dtz,vt,vq,dfhc,dfmc !Kh for clouds (Pr < 2) + 1 +Warning: Unused variable ‘vq’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2883:38: + + REAL, DIMENSION(kts:kte) :: dtz,vt,vq,dfhc,dfmc !Kh for clouds (Pr < 2) + 1 +Warning: Unused variable ‘vt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2886:36: + + REAL, DIMENSION(kts:kte) :: zfac,plumeKh + 1 +Warning: Unused variable ‘zfac’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2836:20: + + &ztop_shallow,ktop_shallow, & + 1 +Warning: Unused dummy argument ‘ztop_shallow’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2890:64: + + REAL :: rhs,gfluxm,gfluxp,dztop,maxdfh,mindfh,maxcf,maxKh,zw + 1 +Warning: Unused variable ‘zw’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90:429:69: + + subroutine init_okw_gws(nwaves, nazdir, nstoch, effac, lonr, kxw) + 1 +Warning: Unused dummy argument ‘kxw’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90:429:64: + + subroutine init_okw_gws(nwaves, nazdir, nstoch, effac, lonr, kxw) + 1 +Warning: Unused dummy argument ‘lonr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90:481:85: + + subroutine initsolv_lsatdis(me, master, nwaves, nazdir, nstoch, effac, do_physb, kxw) + 1 +Warning: Unused dummy argument ‘do_physb’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90:495:36: + + integer :: inc, jk, jl, iazi, i, j, k + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90:495:33: + + integer :: inc, jk, jl, iazi, i, j, k + 1 +Warning: Unused variable ‘iazi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90:495:19: + + integer :: inc, jk, jl, iazi, i, j, k + 1 +Warning: Unused variable ‘inc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90:495:39: + + integer :: inc, jk, jl, iazi, i, j, k + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90:495:23: + + integer :: inc, jk, jl, iazi, i, j, k + 1 +Warning: Unused variable ‘jk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90:495:27: + + integer :: inc, jk, jl, iazi, i, j, k + 1 +Warning: Unused variable ‘jl’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90:495:42: + + integer :: inc, jk, jl, iazi, i, j, k + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90:481:90: + + subroutine initsolv_lsatdis(me, master, nwaves, nazdir, nstoch, effac, do_physb, kxw) + 1 +Warning: Unused dummy argument ‘kxw’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90:481:43: + + subroutine initsolv_lsatdis(me, master, nwaves, nazdir, nstoch, effac, do_physb, kxw) + 1 +Warning: Unused dummy argument ‘master’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90:481:35: + + subroutine initsolv_lsatdis(me, master, nwaves, nazdir, nstoch, effac, do_physb, kxw) + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90:566:84: + + subroutine initsolv_wmsdis(me, master, nwaves, nazdir, nstoch, effac, do_physb, kxw) + 1 +Warning: Unused dummy argument ‘do_physb’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90:583:24: + + integer :: inc, jk, jl, iazi + 1 +Warning: Unused variable ‘jk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90:583:28: + + integer :: inc, jk, jl, iazi + 1 +Warning: Unused variable ‘jl’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90:566:89: + + subroutine initsolv_wmsdis(me, master, nwaves, nazdir, nstoch, effac, do_physb, kxw) + 1 +Warning: Unused dummy argument ‘kxw’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90:64:48: + + subroutine init_global_gwdis(levs, zkm, pmb, kvg, ktg, krad, kion) + 1 +Warning: Unused dummy argument ‘pmb’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2394:47: + + REAL :: qsl,esat,qsat,tlk,qsat_tl,dqsl,cld0,q1k,eq1,qll,& + 1 +Warning: Unused variable ‘cld0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2397:16: + + INTEGER :: i,j,k + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2397:18: + + INTEGER :: i,j,k + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2409:45: + + REAL :: RH_00L, RH_00O, phi_dz, lfac + 1 +Warning: Unused variable ‘phi_dz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2406:77: + + REAL::zagl,cld9,damp,edown,RHcrit,RHmean,RHsum,RHnum,Hshcu,PBLH2,ql_limit + 1 +Warning: Unused variable ‘ql_limit’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2394:25: + + REAL :: qsl,esat,qsat,tlk,qsat_tl,dqsl,cld0,q1k,eq1,qll,& + 1 +Warning: Unused variable ‘qsat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2409:29: + + REAL :: RH_00L, RH_00O, phi_dz, lfac + 1 +Warning: Unused variable ‘rh_00l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2409:37: + + REAL :: RH_00L, RH_00O, phi_dz, lfac + 1 +Warning: Unused variable ‘rh_00o’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2370:37: + + & Vt, Vq, th, sgm, rmo, & + 1 +Warning: Unused dummy argument ‘rmo’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:2396:22: + + &ls_min,ls,wt,cld_factor,fac_damp + 1 +Warning: Unused variable ‘wt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:1520:34: + + & Psig_bl,Psig_shcu,cldfra_bl1D,bl_mynn_mixlength,& + 1 +Warning: Unused dummy argument ‘psig_shcu’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:768:54: + + & edmf_w1,edmf_a1,edmf_qc1,bl_mynn_edmf) + 1 +Warning: Unused dummy argument ‘bl_mynn_edmf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:768:41: + + & edmf_w1,edmf_a1,edmf_qc1,bl_mynn_edmf) + 1 +Warning: Unused dummy argument ‘edmf_qc1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:822:37: + + & el_stab,el_unstab,el_mf,el_stab_mf,elb_mf,PBLH_PLUS_ENT,el_les + 1 +Warning: Unused variable ‘el_mf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:822:21: + + & el_stab,el_unstab,el_mf,el_stab_mf,elb_mf,PBLH_PLUS_ENT,el_les + 1 +Warning: Unused variable ‘el_stab’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:822:48: + + & el_stab,el_unstab,el_mf,el_stab_mf,elb_mf,PBLH_PLUS_ENT,el_les + 1 +Warning: Unused variable ‘el_stab_mf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:792:52: + + REAL :: wt,wt2,zi,zi2,h1,h2,hs,elBLmin0,elBLavg0,cldavg + 1 +Warning: Unused variable ‘elblavg0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:792:43: + + REAL :: wt,wt2,zi,zi2,h1,h2,hs,elBLmin0,elBLavg0,cldavg + 1 +Warning: Unused variable ‘elblmin0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:792:34: + + REAL :: wt,wt2,zi,zi2,h1,h2,hs,elBLmin0,elBLavg0,cldavg + 1 +Warning: Unused variable ‘hs’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:820:16: + + INTEGER :: i,j,k + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:820:18: + + INTEGER :: i,j,k + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:792:18: + + REAL :: wt,wt2,zi,zi2,h1,h2,hs,elBLmin0,elBLavg0,cldavg + 1 +Warning: Unused variable ‘wt2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:633:22: + + & ql, vt, vq, & + 1 +Warning: Unused dummy argument ‘ql’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:453:38: + + & spp_pbl,rstoch_col) + 1 +Warning: Unused dummy argument ‘rstoch_col’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bl_mynn.F90:453:27: + + & spp_pbl,rstoch_col) + 1 +Warning: Unused dummy argument ‘spp_pbl’ at (1) [-Wunused-dummy-argument] +[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_domains_comm.inc:203:0: + + function mpp_global_field_init_comm(domain,l_addr,isize_g,jsize_g,isize_l, & + +Warning: ‘mpp_global_field_init_comm’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_domains_comm.inc:446:0: -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems + subroutine mpp_global_field_free_comm(domain,l_addr,ksize,l_addr2,flags) + +Warning: ‘mpp_global_field_free_comm’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_do_update_ad.h:23:0: + subroutine MPP_DO_UPDATE_AD_3D_( f_addrs, domain, update, d_type, ke, flags) +Warning: ‘mpp_do_update_ad_i8_3d’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_do_update_ad.h:23:0: -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_cplfields.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=N # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_data.F90 -o CCPP_layer/CCPP_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=N # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... - -Build CCPP layer ... - -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c FV3GFS_io.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_write_internal_state.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c post_gfs_stub.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_fv3_config.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c time_utils.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c atmos_model.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_fcst_grid_comp.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 -a - module_fv3_config.o -a - module_fcst_grid_comp.o -a - time_utils.o -a - fv3_cap.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; \ -gmake nems REPRO=Y \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL CCPP_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x + subroutine MPP_DO_UPDATE_AD_3D_( f_addrs, domain, update, d_type, ke, flags) + +Warning: ‘mpp_do_update_ad_i4_3d’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_do_redistribute.h:19:0: -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems + subroutine MPP_DO_REDISTRIBUTE_3D_( f_in, f_out, d_comm, d_type ) + +Warning: ‘mpp_do_redistribute_l8_3d’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_do_redistribute.h:19:0: + subroutine MPP_DO_REDISTRIBUTE_3D_( f_in, f_out, d_comm, d_type ) +Warning: ‘mpp_do_redistribute_l4_3d’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_do_get_boundary_ad.h:23:0: -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:51:20 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_NEMS_UTILS.tmp.o module_NEMS_UTILS.o -'module_NEMS_UTILS.tmp.o' -> 'module_NEMS_UTILS.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:51:20 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR_methods.tmp.o module_MEDIATOR_methods.o -'module_MEDIATOR_methods.tmp.o' -> 'module_MEDIATOR_methods.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:51:20 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:51:20 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR_SpaceWeather.tmp.o module_MEDIATOR_SpaceWeather.o -'module_MEDIATOR_SpaceWeather.tmp.o' -> 'module_MEDIATOR_SpaceWeather.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:51:20 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_EARTH_INTERNAL_STATE.tmp.o module_EARTH_INTERNAL_STATE.o -'module_EARTH_INTERNAL_STATE.tmp.o' -> 'module_EARTH_INTERNAL_STATE.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:51:20 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_EARTH_GRID_COMP.tmp.o module_EARTH_GRID_COMP.o -'module_EARTH_GRID_COMP.tmp.o' -> 'module_EARTH_GRID_COMP.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:51:20 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_NEMS_INTERNAL_STATE.tmp.o module_NEMS_INTERNAL_STATE.o -'module_NEMS_INTERNAL_STATE.tmp.o' -> 'module_NEMS_INTERNAL_STATE.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:51:20 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_NEMS_GRID_COMP.tmp.o module_NEMS_GRID_COMP.o -'module_NEMS_GRID_COMP.tmp.o' -> 'module_NEMS_GRID_COMP.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:51:20 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_NEMS_Rusage.tmp.o module_NEMS_Rusage.o -'module_NEMS_Rusage.tmp.o' -> 'module_NEMS_Rusage.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:51:20 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v MAIN_NEMS.tmp.o MAIN_NEMS.o -'MAIN_NEMS.tmp.o' -> 'MAIN_NEMS.o' -echo libgocart is -libgocart is -echo extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=gfortran -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libccppdriver.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libstochastic_physics.a -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -L/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/fv3_6.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/fv3_6.exe -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_6 BUILD_ENV=cheyenne.gnu 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp' NEMS_BUILDOPT=REPRO=Y clean -Will copy modules.nems and NEMS.x as fv3_6 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -+ elapsed=492 -+ echo 'Elapsed time 492 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp finished' -Elapsed time 492 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.gnu -+ BUILD_TARGET=cheyenne.gnu -+ readonly 'MAKE_OPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y' -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y' -+ readonly BUILD_NAME=fv3_7 -+ BUILD_NAME=fv3_7 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -cheyenne1 -+ echo 'Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y into fv3_7.exe on cheyenne.gnu' -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y into fv3_7.exe on cheyenne.gnu -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake -+ [[ cheyenne.gnu == cheyenne.* ]] -+ MAKE_THREADS=3 -+ MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y == *\W\W\3\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ NEMS_BUILDOPT=REPRO=Y -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_7 BUILD_ENV=cheyenne.gnu 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y' NEMS_BUILDOPT=REPRO=Y distclean -Will copy modules.nems and NEMS.x as fv3_7 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 --static --suites=FV3_GFS_v15plus --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include" ; \ -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 --static --suites=FV3_GFS_v15plus --clean -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: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Cleaning ... + subroutine MPP_DO_GET_BOUNDARY_AD_3D_( f_addrs, domain, bound, b_addrs, bsize, ke, d_type) + +Warning: ‘mpp_do_get_boundary_ad_r8_3d’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ad.h:63:0: -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. + subroutine MPP_GLOBAL_FIELD_4D_AD_( domain, local, global, flags, position,tile_count, default_data ) + +Warning: ‘mpp_global_field2d_r8_4d_ad’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ad.h:81:0: -Build standalone FV3 gfsphysics ... + subroutine MPP_GLOBAL_FIELD_5D_AD_( domain, local, global, flags, position,tile_count, default_data ) + +Warning: ‘mpp_global_field2d_r8_5d_ad’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ad.h:63:0: -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. + subroutine MPP_GLOBAL_FIELD_4D_AD_( domain, local, global, flags, position,tile_count, default_data ) + +Warning: ‘mpp_global_field2d_i8_4d_ad’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ad.h:81:0: -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_7 BUILD_ENV=cheyenne.gnu 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y' NEMS_BUILDOPT=REPRO=Y build -Will copy modules.nems and NEMS.x as fv3_7 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/modulefiles/cheyenne.gnu/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/modules.fv3_7" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/modules.fv3_7 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/conf/configure.fv3.cheyenne.gnu /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ -exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" all + subroutine MPP_GLOBAL_FIELD_5D_AD_( domain, local, global, flags, position,tile_count, default_data ) + +Warning: ‘mpp_global_field2d_i8_5d_ad’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ad.h:23:0: -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems + subroutine MPP_GLOBAL_FIELD_2D_AD_( domain, local, global, flags, position,tile_count, default_data) + +Warning: ‘mpp_global_field2d_l8_2d_ad’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ad.h:63:0: + subroutine MPP_GLOBAL_FIELD_4D_AD_( domain, local, global, flags, position,tile_count, default_data ) +Warning: ‘mpp_global_field2d_l8_4d_ad’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ad.h:81:0: -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mpp/threadloc.c -o ../mpp/threadloc.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_domains.F90 -o ../mpp/mpp_domains.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_grid.F90 -o ../diag_manager/diag_grid.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_axis.F90 -o ../diag_manager/diag_axis.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_output.F90 -o ../diag_manager/diag_output.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_util.F90 -o ../diag_manager/diag_util.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp_external.F90 -o ../time_interp/time_interp_external.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manager.F90 -o ../diag_manager/diag_manager.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 --static --suites=FV3_GFS_v15plus ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh cheyenne.gnu "$PATH_CCPP" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk \ - "REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp"" NO NO ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp"/include ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp"/lib + subroutine MPP_GLOBAL_FIELD_5D_AD_( domain, local, global, flags, position,tile_count, default_data ) + +Warning: ‘mpp_global_field2d_l8_5d_ad’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ad.h:63:0: -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems + subroutine MPP_GLOBAL_FIELD_4D_AD_( domain, local, global, flags, position,tile_count, default_data ) + +Warning: ‘mpp_global_field2d_i4_4d_ad’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ad.h:81:0: + subroutine MPP_GLOBAL_FIELD_5D_AD_( domain, local, global, flags, position,tile_count, default_data ) +Warning: ‘mpp_global_field2d_i4_5d_ad’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ad.h:23:0: -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 --static --suites=FV3_GFS_v15plus -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_v15plus.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 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 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 slc of variable volume_fraction_of_unfrozen_soil_moisture 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 phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top 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 sec of variable seconds_elapsed_since_model_initialization 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 kbot of variable vertical_index_at_cloud_base 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 stc of variable soil_temperature 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 xlaixy of variable leaf_area_index 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 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 phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back 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 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 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 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 v10m of variable y_wind_at_10m 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 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 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 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 nmtvr of variable number_of_statistical_measures_of_subgrid_orography 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 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 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 ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial 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 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 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 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 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 levs of variable vertical_dimension 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 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 w_0 of variable coefficient_w_0 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 pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter 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 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 phy_myj_chkqlm of variable surface_layer_evaporation_switch 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 sdec of variable sine_of_solar_declination_angle 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 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 dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep 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 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 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 lgocart of variable flag_gocart 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 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 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 sinlat of variable sine_of_latitude 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 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 do_sfcperts of variable flag_for_stochastic_surface_perturbations 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 tsfc_ice of variable surface_skin_temperature_over_ice_interstitial 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 debug of variable flag_debug 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 u1 of variable x_wind_at_lowest_model_layer_for_diag 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 do_myjsfc of variable do_myjsfc 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 gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics 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 slopetype of variable surface_slope_classification 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 levh2o of variable vertical_dimension_of_h2o_forcing_data 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 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 save_q of variable tracer_concentration_save 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 cf_upi of variable convective_cloud_fraction_for_microphysics 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial 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 dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL 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 tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave 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 forcet of variable temperature_tendency_due_to_dynamics 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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 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 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 ntchmdiag of variable number_of_chemical_tracers_for_diagnostics 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 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 dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column 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 islmsk_cice of variable sea_land_ice_mask_cice 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 pgr of variable surface_air_pressure 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 nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling 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 nscav of variable number_of_tracers_scavenged 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 zorl_ice of variable surface_roughness_length_over_ice_interstitial 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 aero_in of variable flag_for_aerosol_input_MG 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 avg_max_length of variable time_interval_for_maximum_hourly_fields 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 kind_LOGICAL of variable kind_LOGICAL 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial 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 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 mdt of variable time_step_for_remapping_for_fast_physics 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 sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model 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 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 runoff of variable total_runoff 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 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 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 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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial 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 nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation 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 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 qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio 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 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 oceanfrac of variable sea_area_fraction 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 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 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 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 ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land 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 phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back 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 con_t0c of variable temperature_at_zero_celsius 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 dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling 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 shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term 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 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 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 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 mom4ice of variable flag_for_mom4_coupling 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 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 tsfcl of variable surface_skin_temperature_over_land 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 ozphys -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 ozphys_2015 -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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme noahmpdrv -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 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 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_noahmp_pre -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 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 mp_thompson_post -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 gwdps_post -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 lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme mynnrad_post -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 lsm_noah -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme dcyc2t3_post -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -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_diffusivity_coefficient_factor -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 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 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_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_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_water_to_rain -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -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_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -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 explicit_rainfall_rate_from_previous_timestep -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_aerosol_input_MG -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_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_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_shoc_after_convection -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 graupel_precipitation_rate_from_previous_timestep -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_precipitation_rate_from_previous_timestep -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 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 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 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 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_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_precipitation_rate_from_previous_timestep -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_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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 162 schemes to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_SCHEMES.mk, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 6 auto-generated caps to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_CAPS.mk and /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ ./build_ccpp.sh cheyenne.gnu /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk 'REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp' NO NO -MACHINE_ID=cheyenne.gnu is valid. -Compilers set for cheyenne.gnu. -Obtained ESMF_LIB=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib from /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -DNETCDF_DIR=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/ -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DOPENMP=ON -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is GNU 8.3.0 --- The CXX compiler identification is GNU 8.3.0 --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -- 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: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicxx --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicxx -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- The Fortran compiler identification is GNU 8.3.0 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 supports Fortran 90 --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 supports Fortran 90 -- yes --- Dynamics compiled with 32-bit option, adjust fv_sat_adj types --- Detecting OpenMP flags for GNU C compiler: -fopenmp --- Detecting OpenMP flags for GNU C++ compiler: -fopenmp --- Detecting OpenMP flags for GNU Fortran compiler: -fopenmp --- 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 GNU C compiler: -fopenmp --- Detecting OpenMP flags for GNU C++ compiler: -fopenmp --- Detecting OpenMP flags for GNU Fortran compiler: -fopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.4") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.6") --- Detecting OpenMP flags for GNU C compiler: -fopenmp --- Detecting OpenMP flags for GNU C++ compiler: -fopenmp --- Detecting OpenMP flags for GNU Fortran compiler: -fopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot SCHEMES from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_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: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -g -fopenmp -fopenmp -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_dl.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -g -fopenmp -fopenmp -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_fields_idx.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -g -fopenmp -fopenmp -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_utils.c -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -g -fopenmp -fopenmp -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_xml.c -[ 8%] Linking Fortran static library libccpp.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar qc libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 9%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -g -fopenmp -fopenmp -o CMakeFiles/test_fields.dir/test_fields.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests/test_fields.c -[ 9%] Linking C executable test_fields -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -O2 -fPIC -g -fopenmp -fopenmp CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lgfortran -lgfortran -lquadmath -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -[ 10%] Linking Fortran executable test_check -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE CMakeFiles/test_check.dir/test_check.f90.o -o test_check ../libccpp.a /usr/lib64/libxml2.so -ldl -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 11%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -[ 12%] Linking Fortran executable test_init_finalize -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize ../libccpp.a /usr/lib64/libxml2.so -ldl -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fno-range-check -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -ffree-line-length-none -fdefault-real-8 -ffree-form -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -ffree-form -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_fast_physics_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_physics_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_radiation_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_stochastics_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_time_vary_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_cap.F90.o.provides.build -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1997:72: - - & del(i,:), Sw, Sw1) - 1 -Warning: Type mismatch in argument ‘km’ at (1); passed INTEGER(4) to REAL(8) [-Wargument-mismatch] -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F:2009:72: - - call diff_1d_ptend(levs, dtstab, Fw, Kpt, del(i,:), Sw) - 1 -Warning: Missing actual argument for argument ‘s’ at (1) -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -ffree-form -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 99%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -g -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -[100%] Linking Fortran static library libccppphys.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /usr/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_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/mfscu.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_aerosols.f.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/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o -/usr/bin/ranlib libccppphys.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[2]: Nothing to be done for 'preinstall'. -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Bitforbit" --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib/libccpp.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib/cmake/ccpp-config-bitforbit.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_xml.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_utils.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_dl.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_dl.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_errors.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fields.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_strings.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_suite.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_types.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_xml.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_api.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib/libccppphys.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib/cmake/ccppphys-config-bitforbit.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_fast_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_stochastics_cap.mod -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_cplfields.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=Y # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_data.F90 -o CCPP_layer/CCPP_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=Y # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... - -Build CCPP layer ... - -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DOVERLOAD_R4 CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c FV3GFS_io.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_write_internal_state.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c post_gfs_stub.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_fv3_config.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c time_utils.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c atmos_model.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_fcst_grid_comp.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 -a - module_fv3_config.o -a - module_fcst_grid_comp.o -a - time_utils.o -a - fv3_cap.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; \ -gmake nems REPRO=Y \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL CCPP_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:02:18 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_NEMS_UTILS.tmp.o module_NEMS_UTILS.o -'module_NEMS_UTILS.tmp.o' -> 'module_NEMS_UTILS.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:02:18 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR_methods.tmp.o module_MEDIATOR_methods.o -'module_MEDIATOR_methods.tmp.o' -> 'module_MEDIATOR_methods.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:02:18 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:02:18 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR_SpaceWeather.tmp.o module_MEDIATOR_SpaceWeather.o -'module_MEDIATOR_SpaceWeather.tmp.o' -> 'module_MEDIATOR_SpaceWeather.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:02:18 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_EARTH_INTERNAL_STATE.tmp.o module_EARTH_INTERNAL_STATE.o -'module_EARTH_INTERNAL_STATE.tmp.o' -> 'module_EARTH_INTERNAL_STATE.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:02:18 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_EARTH_GRID_COMP.tmp.o module_EARTH_GRID_COMP.o -'module_EARTH_GRID_COMP.tmp.o' -> 'module_EARTH_GRID_COMP.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:02:18 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_NEMS_INTERNAL_STATE.tmp.o module_NEMS_INTERNAL_STATE.o -'module_NEMS_INTERNAL_STATE.tmp.o' -> 'module_NEMS_INTERNAL_STATE.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:02:18 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_NEMS_GRID_COMP.tmp.o module_NEMS_GRID_COMP.o -'module_NEMS_GRID_COMP.tmp.o' -> 'module_NEMS_GRID_COMP.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:02:18 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_NEMS_Rusage.tmp.o module_NEMS_Rusage.o -'module_NEMS_Rusage.tmp.o' -> 'module_NEMS_Rusage.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:02:18 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -g -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v MAIN_NEMS.tmp.o MAIN_NEMS.o -'MAIN_NEMS.tmp.o' -> 'MAIN_NEMS.o' -echo libgocart is -libgocart is -echo extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=gfortran -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libccppdriver.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libstochastic_physics.a -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -L/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/fv3_7.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/fv3_7.exe -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_7 BUILD_ENV=cheyenne.gnu 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y' NEMS_BUILDOPT=REPRO=Y clean -Will copy modules.nems and NEMS.x as fv3_7 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -+ elapsed=512 -+ echo 'Elapsed time 512 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y finished' -Elapsed time 512 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.gnu -+ BUILD_TARGET=cheyenne.gnu -+ readonly 'MAKE_OPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp' -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp' -+ readonly BUILD_NAME=fv3_8 -+ BUILD_NAME=fv3_8 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -cheyenne1 -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp into fv3_8.exe on cheyenne.gnu' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp into fv3_8.exe on cheyenne.gnu -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake -+ [[ cheyenne.gnu == cheyenne.* ]] -+ MAKE_THREADS=3 -+ MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp == *\W\W\3\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp == *\R\E\P\R\O\=\Y* ]] -+ NEMS_BUILDOPT= -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_8 BUILD_ENV=cheyenne.gnu 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp' NEMS_BUILDOPT= distclean -Will copy modules.nems and NEMS.x as fv3_8 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include" ; \ -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp --clean -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: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_8 BUILD_ENV=cheyenne.gnu 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp' NEMS_BUILDOPT= build -Will copy modules.nems and NEMS.x as fv3_8 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/modulefiles/cheyenne.gnu/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/modules.fv3_8" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/modules.fv3_8 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/conf/configure.fv3.cheyenne.gnu /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ -exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O2 -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mpp/threadloc.c -o ../mpp/threadloc.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_domains.F90 -o ../mpp/mpp_domains.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_grid.F90 -o ../diag_manager/diag_grid.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_axis.F90 -o ../diag_manager/diag_axis.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_output.F90 -o ../diag_manager/diag_output.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp_external.F90 -o ../time_interp/time_interp_external.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_util.F90 -o ../diag_manager/diag_util.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manager.F90 -o ../diag_manager/diag_manager.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh cheyenne.gnu "$PATH_CCPP" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk \ - "CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp"" NO NO ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp"/include ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp -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 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 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 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 slc of variable volume_fraction_of_unfrozen_soil_moisture 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 phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top 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 sec of variable seconds_elapsed_since_model_initialization 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 kbot of variable vertical_index_at_cloud_base 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 stc of variable soil_temperature 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 xlaixy of variable leaf_area_index 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 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 phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back 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 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 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 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 v10m of variable y_wind_at_10m 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 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 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 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 nmtvr of variable number_of_statistical_measures_of_subgrid_orography 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 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 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 ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial 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 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 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 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 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 levs of variable vertical_dimension 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 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 w_0 of variable coefficient_w_0 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 pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter 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 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 phy_myj_chkqlm of variable surface_layer_evaporation_switch 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 sdec of variable sine_of_solar_declination_angle 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 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 dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep 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 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 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 lgocart of variable flag_gocart 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 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 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 sinlat of variable sine_of_latitude 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 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 do_sfcperts of variable flag_for_stochastic_surface_perturbations 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 tsfc_ice of variable surface_skin_temperature_over_ice_interstitial 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 debug of variable flag_debug 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 u1 of variable x_wind_at_lowest_model_layer_for_diag 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 do_myjsfc of variable do_myjsfc 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 gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics 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 slopetype of variable surface_slope_classification 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 levh2o of variable vertical_dimension_of_h2o_forcing_data 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 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 save_q of variable tracer_concentration_save 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 cf_upi of variable convective_cloud_fraction_for_microphysics 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial 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 dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL 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 tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave 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 forcet of variable temperature_tendency_due_to_dynamics 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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 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 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 ntchmdiag of variable number_of_chemical_tracers_for_diagnostics 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 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 dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column 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 islmsk_cice of variable sea_land_ice_mask_cice 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 pgr of variable surface_air_pressure 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 nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling 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 nscav of variable number_of_tracers_scavenged 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 zorl_ice of variable surface_roughness_length_over_ice_interstitial 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 aero_in of variable flag_for_aerosol_input_MG 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 avg_max_length of variable time_interval_for_maximum_hourly_fields 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 kind_LOGICAL of variable kind_LOGICAL 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial 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 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 mdt of variable time_step_for_remapping_for_fast_physics 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 sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model 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 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 runoff of variable total_runoff 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 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 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 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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial 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 nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation 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 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 qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio 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 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 oceanfrac of variable sea_area_fraction 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 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 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 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 ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land 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 phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back 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 con_t0c of variable temperature_at_zero_celsius 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 dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling 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 shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term 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 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 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 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 mom4ice of variable flag_for_mom4_coupling 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 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 tsfcl of variable surface_skin_temperature_over_land 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 ozphys -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 ozphys_2015 -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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme noahmpdrv -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 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 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_noahmp_pre -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 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 mp_thompson_post -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 gwdps_post -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 lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme mynnrad_post -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 lsm_noah -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme dcyc2t3_post -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -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 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_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_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_water_to_rain -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep -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 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 explicit_rainfall_rate_from_previous_timestep -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_aerosol_input_MG -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_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_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_shoc_after_convection -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 graupel_precipitation_rate_from_previous_timestep -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_precipitation_rate_from_previous_timestep -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 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 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 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_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_precipitation_rate_from_previous_timestep -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_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 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 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 162 schemes to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_SCHEMES.mk, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 6 auto-generated caps to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_CAPS.mk and /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ ./build_ccpp.sh cheyenne.gnu /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk 'CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp' NO NO -MACHINE_ID=cheyenne.gnu is valid. -Compilers set for cheyenne.gnu. -Obtained ESMF_LIB=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib from /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -DNETCDF_DIR=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/ -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DOPENMP=ON -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is GNU 8.3.0 --- The CXX compiler identification is GNU 8.3.0 --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -- 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: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicxx --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicxx -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- The Fortran compiler identification is GNU 8.3.0 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 supports Fortran 90 --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 supports Fortran 90 -- yes --- Detecting OpenMP flags for GNU C compiler: -fopenmp --- Detecting OpenMP flags for GNU C++ compiler: -fopenmp --- Detecting OpenMP flags for GNU Fortran compiler: -fopenmp --- 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 GNU C compiler: -fopenmp --- Detecting OpenMP flags for GNU C++ compiler: -fopenmp --- Detecting OpenMP flags for GNU Fortran compiler: -fopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.4") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.6") --- Detecting OpenMP flags for GNU C compiler: -fopenmp --- Detecting OpenMP flags for GNU C++ compiler: -fopenmp --- Detecting OpenMP flags for GNU Fortran compiler: -fopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot SCHEMES from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_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: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fopenmp -fopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_dl.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fopenmp -fopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_fields_idx.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fopenmp -fopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_utils.c -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fopenmp -fopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_xml.c -[ 8%] Linking Fortran static library libccpp.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar qc libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 9%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fopenmp -fopenmp -O2 -fPIC -o CMakeFiles/test_fields.dir/test_fields.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests/test_fields.c -[ 9%] Linking C executable test_fields -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -O2 -fPIC -fopenmp -fopenmp -O2 -fPIC CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lgfortran -lgfortran -lquadmath -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -[ 10%] Linking Fortran executable test_check -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_check.dir/test_check.f90.o -o test_check ../libccpp.a /usr/lib64/libxml2.so -ldl -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 11%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -[ 12%] Linking Fortran executable test_init_finalize -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize ../libccpp.a /usr/lib64/libxml2.so -ldl -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fno-range-check -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -ffree-line-length-none -fdefault-real-8 -ffree-form -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -ffree-form -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_physics_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o.provides.build -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1997:72: - - & del(i,:), Sw, Sw1) - 1 -Warning: Type mismatch in argument ‘km’ at (1); passed INTEGER(4) to REAL(8) [-Wargument-mismatch] -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F:2009:72: - - call diff_1d_ptend(levs, dtstab, Fw, Kpt, del(i,:), Sw) - 1 -Warning: Missing actual argument for argument ‘s’ at (1) -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -ffree-form -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 99%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O2 -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -[100%] Linking Fortran static library libccppphys.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /usr/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_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/mfscu.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_aerosols.f.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/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -/usr/bin/ranlib libccppphys.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[2]: Nothing to be done for 'preinstall'. -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Release" --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib/libccpp.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib/cmake/ccpp-config-release.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_xml.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_utils.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_dl.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_dl.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_errors.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fields.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_strings.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_suite.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_types.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_xml.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_api.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib/libccppphys.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib/cmake/ccppphys-config-release.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap.mod -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_cplfields.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=N # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_data.F90 -o CCPP_layer/CCPP_data.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=N # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... - -Build CCPP layer ... - -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c FV3GFS_io.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_write_internal_state.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c post_gfs_stub.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_fv3_config.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c time_utils.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c atmos_model.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_fcst_grid_comp.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 -a - module_fv3_config.o -a - module_fcst_grid_comp.o -a - time_utils.o -a - fv3_cap.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; \ -gmake nems \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL CCPP_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:11:18 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_NEMS_UTILS.tmp.o module_NEMS_UTILS.o -'module_NEMS_UTILS.tmp.o' -> 'module_NEMS_UTILS.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:11:18 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR_methods.tmp.o module_MEDIATOR_methods.o -'module_MEDIATOR_methods.tmp.o' -> 'module_MEDIATOR_methods.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:11:18 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:11:18 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR_SpaceWeather.tmp.o module_MEDIATOR_SpaceWeather.o -'module_MEDIATOR_SpaceWeather.tmp.o' -> 'module_MEDIATOR_SpaceWeather.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:11:18 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_EARTH_INTERNAL_STATE.tmp.o module_EARTH_INTERNAL_STATE.o -'module_EARTH_INTERNAL_STATE.tmp.o' -> 'module_EARTH_INTERNAL_STATE.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:11:18 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_EARTH_GRID_COMP.tmp.o module_EARTH_GRID_COMP.o -'module_EARTH_GRID_COMP.tmp.o' -> 'module_EARTH_GRID_COMP.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:11:18 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_NEMS_INTERNAL_STATE.tmp.o module_NEMS_INTERNAL_STATE.o -'module_NEMS_INTERNAL_STATE.tmp.o' -> 'module_NEMS_INTERNAL_STATE.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:11:18 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_NEMS_GRID_COMP.tmp.o module_NEMS_GRID_COMP.o -'module_NEMS_GRID_COMP.tmp.o' -> 'module_NEMS_GRID_COMP.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:11:18 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_NEMS_Rusage.tmp.o module_NEMS_Rusage.o -'module_NEMS_Rusage.tmp.o' -> 'module_NEMS_Rusage.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:11:18 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -O2 -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v MAIN_NEMS.tmp.o MAIN_NEMS.o -'MAIN_NEMS.tmp.o' -> 'MAIN_NEMS.o' -echo libgocart is -libgocart is -echo extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=gfortran -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libccppdriver.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libstochastic_physics.a -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -L/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/fv3_8.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/fv3_8.exe -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_8 BUILD_ENV=cheyenne.gnu 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp' NEMS_BUILDOPT= clean -Will copy modules.nems and NEMS.x as fv3_8 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -+ elapsed=394 -+ echo 'Elapsed time 394 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp finished' -Elapsed time 394 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.gnu -+ BUILD_TARGET=cheyenne.gnu -+ readonly 'MAKE_OPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y' -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y' -+ readonly BUILD_NAME=fv3_9 -+ BUILD_NAME=fv3_9 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -cheyenne1 -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y into fv3_9.exe on cheyenne.gnu' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y into fv3_9.exe on cheyenne.gnu -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake -+ [[ cheyenne.gnu == cheyenne.* ]] -+ MAKE_THREADS=3 -+ MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y == *\W\W\3\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y == *\R\E\P\R\O\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y == *\D\E\B\U\G\=\Y* ]] -+ NEMS_BUILDOPT=DEBUG=Y -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_9 BUILD_ENV=cheyenne.gnu 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y' NEMS_BUILDOPT=DEBUG=Y distclean -Will copy modules.nems and NEMS.x as fv3_9 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 --debug --static --suites=FV3_GFS_2017 --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include" ; \ -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 --debug --static --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 formet -INFO: Performing clean .... -DEBUG: Executing "rm -vf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_SCHEMES.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_SCHEMES.cmake /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_SCHEMES.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_CAPS.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_CAPS.cmake /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_CAPS.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_*_cap.F90 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_static_api.F90" -DEBUG: Execution of "rm -vf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_SCHEMES.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_SCHEMES.cmake /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_SCHEMES.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_CAPS.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_CAPS.cmake /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_CAPS.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_*_cap.F90 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_static_api.F90" returned with exit code 0 - stdout: "removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_SCHEMES.mk' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_SCHEMES.cmake' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_SCHEMES.sh' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_CAPS.mk' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_CAPS.cmake' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_CAPS.sh' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_static_api.F90'" - stderr: "" -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_9 BUILD_ENV=cheyenne.gnu 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y' NEMS_BUILDOPT=DEBUG=Y build -Will copy modules.nems and NEMS.x as fv3_9 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/modulefiles/cheyenne.gnu/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/modules.fv3_9" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/modules.fv3_9 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/conf/configure.fv3.cheyenne.gnu /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ -exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O0 -g -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O0 -g -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O0 -g -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O0 -g -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O0 -g -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O0 -g -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O0 -g -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O0 -g -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -D__IFC -O0 -g -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -c ../mpp/threadloc.c -o ../mpp/threadloc.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_domains.F90 -o ../mpp/mpp_domains.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_grid.F90 -o ../diag_manager/diag_grid.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_axis.F90 -o ../diag_manager/diag_axis.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_output.F90 -o ../diag_manager/diag_output.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp_external.F90 -o ../time_interp/time_interp_external.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_util.F90 -o ../diag_manager/diag_util.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manager.F90 -o ../diag_manager/diag_manager.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 --debug --static --suites=FV3_GFS_2017 ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh cheyenne.gnu "$PATH_CCPP" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk \ - "CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp"" NO NO ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp"/include ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 --debug --static --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 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 ... -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 -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 -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': [1160, 1399], 'GFS_control_type': [458, 959], 'GFS_interstitial_type': [1409, 1722], 'GFS_tbd_type': [1012, 1098], 'GFS_sfcprop_type': [192, 336], 'GFS_coupling_type': [344, 449], 'GFS_statein_type': [144, 168], 'GFS_cldprop_type': [1106, 1114], 'GFS_data_type': [1734, 1744], 'GFS_radtend_type': [1122, 1152], 'GFS_grid_type': [967, 1004], 'GFS_stateout_type': [176, 184], 'GFS_init_type': [93, 136]})]) -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, 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 -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, 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_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, 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, number_of_hydrometeors, 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_zhao_carr_pdf_microphysics_scheme, flag_for_morrison_gettelman_microphysics_scheme, coefficient_from_cloud_ice_to_snow, coefficient_from_cloud_water_to_rain, coefficient_for_evaporation_of_rainfall, cloud_condensed_water_conversion_threshold, 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, 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, vegetation_type_dataset_choice, soil_type_dataset_choice, 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_mom4_coupling, flag_for_ras_deep_convection, 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_mass_flux_deep_convection_scheme, number_of_statistical_measures_of_subgrid_orography, 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, 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, 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_gaussian_spatial_filter, flag_for_combination_of_sppt_with_isppt_deep, 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_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, flag_gocart -DEBUG: Variables in derived type GFS_interstitial_type: 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, surface_x_momentum_flux_for_coupling_interstitial, surface_y_momentum_flux_for_coupling_interstitial, surface_upward_sensible_heat_flux_for_coupling_interstitial, surface_upward_latent_heat_flux_for_coupling_interstitial, 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_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, 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, 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, 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_upwelling_longwave_flux_for_coupling_interstitial, 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 -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, 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, 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, temperature_tendency_due_to_dynamics, moisture_tendency_due_to_dynamics, temperature_from_previous_timestep, moisture_from_previous_timestep, conv_activity_counter, 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, 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, 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 -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, tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep, tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep, tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep, tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep, fraction_of_cellular_automata_for_deep_convection, convective_available_potential_energy_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_timestep, tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep, surface_diffused_shortwave_albedo, cosine_of_zenith_angle, surface_midlayer_air_temperature_in_longwave_radiation, surface_longwave_emissivity, tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep, tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep, 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, 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 ccpp_types.F90 with registry OrderedDict([('ccpp_types', {'ccpp_t': [131, 144], 'ccpp_subcycle_t': [85, 89], 'ccpp_suite_t': [108, 116], 'ccpp_field_t': [44, 52], 'ccpp_function_t': [58, 62], 'ccpp_group_t': [96, 100], 'ccpp_scheme_t': [68, 77]})]) -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 -DEBUG: Variables in derived type ccpp_subcycle_t: -DEBUG: Variables in derived type ccpp_suite_t: -DEBUG: Variables in derived type ccpp_field_t: -DEBUG: Variables in derived type ccpp_function_t: -DEBUG: Variables in derived type ccpp_group_t: -DEBUG: Variables in derived type ccpp_scheme_t: -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 -DEBUG: Updating local name of variable lw_fluxes_sfc from sfcflw to GFS_Data(cdata%blk_no)%Radtend%sfcflw -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 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 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 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 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 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 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 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 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 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 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 vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -DEBUG: Updating local name of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from vconvtend to GFS_Data(cdata%blk_no)%Coupling%vconvtend -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 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 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 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 qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -DEBUG: Updating local name of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from qconvtend to GFS_Data(cdata%blk_no)%Coupling%qconvtend -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable index_for_ice_friendly_aerosols from ntia to GFS_Control%ntia -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 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 -DEBUG: Updating local name of variable index_for_rain_water from ntrw to GFS_Control%ntrw -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 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 -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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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_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 -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 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 -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 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_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 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)%Tbd%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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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)%Tbd%iceprv -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 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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable in_number_concentration from in_nm to GFS_Data(cdata%blk_no)%Tbd%in_nm -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 -DEBUG: Updating local name of variable ccpp_block_number from blk_no to cdata%blk_no -DEBUG: Updating local name of variable horizontal_dimension from blksz2(ccpp_block_number) to GFS_Control%blksz2(cdata%blk_no) -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 GFS_statein_type of variable GFS_statein_type from new to old metadata -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 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 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 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 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 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 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 swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from swhc to GFS_Data(cdata%blk_no)%Radtend%swhc -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 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 -DEBUG: Updating local name of variable starting_y_direction_index from js to CCPP_interstitial%js -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 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 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 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 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 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 -DEBUG: Updating local name of variable index_for_ozone from ntoz to GFS_Control%ntoz -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable ending_y_direction_index from je to CCPP_interstitial%je -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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable index_for_graupel_effective_radius from ngeffr to GFS_Control%ngeffr -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 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 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 -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 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 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 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 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 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 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 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 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 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 tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from tconvtend to GFS_Data(cdata%blk_no)%Coupling%tconvtend -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 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 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 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 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 -DEBUG: Updating local name of variable cloud_condensed_water_conversion_threshold from wminco to GFS_Control%wminco -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 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 -DEBUG: Updating local name of variable surface_wind_stress from stress to GFS_Interstitial(cdata%thrd_no)%stress -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 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 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 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 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 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 -DEBUG: Updating local name of variable height_of_mountain_blocking from zmtb to GFS_Interstitial(cdata%thrd_no)%zmtb -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 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 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 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 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 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 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 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 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 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 -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 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 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 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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from htrlw to GFS_Data(cdata%blk_no)%Radtend%htrlw -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 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 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial from new to old metadata -DEBUG: Updating local name of variable surface_x_momentum_flux_for_coupling_interstitial from dusfc_cice to GFS_Interstitial(cdata%thrd_no)%dusfc_cice -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 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 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 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 -DEBUG: Variable index_for_rain_effective_radius was in old metadata format and has already been converted -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 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 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 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 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 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 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 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 -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 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 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 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 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 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 -DEBUG: Variable index_for_ice_friendly_aerosols was in old metadata format and has already been converted -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 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 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 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 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 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 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 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 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 -DEBUG: Variable topfsw_type is in old metadata format, no conversion necessary -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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable index_for_cloud_amount from ntclamt to GFS_Control%ntclamt -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Variable index_for_liquid_cloud_condensate was in old metadata format and has already been converted -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable index_for_ice_cloud_number_concentration from ntinc to GFS_Control%ntinc -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -DEBUG: Updating local name of variable convective_available_potential_energy_for_coupling from cape to GFS_Data(cdata%blk_no)%Coupling%cape -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 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)%Tbd%dsnowprv -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 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 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 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 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 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 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 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 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_for_ozone was in old metadata format and has already been converted -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 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 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 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 -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 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 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 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 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 lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from lwhc to GFS_Data(cdata%blk_no)%Radtend%lwhc -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 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 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 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 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 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 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 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 -DEBUG: Variable index_for_water_vapor was in old metadata format and has already been converted -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 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 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 -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 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 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 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 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 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 -DEBUG: Updating local name of variable index_for_graupel from ntgl to GFS_Control%ntgl -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 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 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 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 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 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 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 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 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 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 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 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 -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 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 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 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 -DEBUG: Variable index_for_liquid_cloud_number_concentration was in old metadata format and has already been converted -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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable array_dimension_of_2d_arrays_for_microphysics from num_p2d to GFS_Control%num_p2d -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 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 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 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 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 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 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 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 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 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 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 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 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)%Tbd%draincprv -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 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 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 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 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 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 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 htsw0 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 htsw0 to GFS_Data(cdata%blk_no)%Tbd%htsw0 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 lgocart of variable flag_gocart from new to old metadata -DEBUG: Updating local name of variable flag_gocart from lgocart to GFS_Control%lgocart -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -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 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 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 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 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 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 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) -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 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 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 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 -DEBUG: Variable index_for_water_friendly_aerosols was in old metadata format and has already been converted -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 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 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)%Tbd%snowprv -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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)%Tbd%dgraupelprv -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 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 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 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 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 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 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 -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) -DEBUG: Variable sfcfsw_type is in old metadata format, no conversion necessary -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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable flag_for_microphysics_scheme from imp_physics to GFS_Control%imp_physics -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -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 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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable number_of_gases_for_multi_gases_physics from ngas to CCPP_interstitial%ngas -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)%Tbd%diceprv -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 -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 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 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 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 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 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 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 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 -DEBUG: Variable index_for_graupel was in old metadata format and has already been converted -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 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 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 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 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 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 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 -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 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 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 htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from htrsw to GFS_Data(cdata%blk_no)%Radtend%htrsw -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 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 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 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 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 -DEBUG: Variable index_for_rain_water was in old metadata format and has already been converted -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 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: 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 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 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 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 -DEBUG: Updating local name of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from indcld to GFS_Control%indcld -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -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 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 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 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 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 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 -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 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 -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 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 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 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 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 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 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 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 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 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 blksz(ccpp_block_number) of variable horizontal_loop_extent 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_loop_extent from blksz(ccpp_block_number) to GFS_Control%blksz(cdata%blk_no) -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 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 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 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 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 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 -DEBUG: Updating local name of variable density_of_frozen_precipitation from rhofr to GFS_Data(cdata%blk_no)%Sfcprop%rhofr -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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable index_for_turbulent_kinetic_energy from ntke to GFS_Control%ntke -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 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 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 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 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 -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 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 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial from new to old metadata -DEBUG: Updating local name of variable surface_upward_latent_heat_flux_for_coupling_interstitial from dqsfc_cice to GFS_Interstitial(cdata%thrd_no)%dqsfc_cice -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 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 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 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 -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 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 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 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 -DEBUG: Updating local name of variable number_of_days_in_year from yearlen to GFS_Control%yearlen -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 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 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 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 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 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 -DEBUG: Variable index_for_cloud_amount was in old metadata format and has already been converted -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 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 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 -DEBUG: Updating local name of variable index_for_ice_effective_radius from nieffr to GFS_Control%nieffr -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 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 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 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 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 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 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 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 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 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 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 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial from new to old metadata -DEBUG: Updating local name of variable surface_upward_sensible_heat_flux_for_coupling_interstitial from dtsfc_cice to GFS_Interstitial(cdata%thrd_no)%dtsfc_cice -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 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 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 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 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 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 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 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 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 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)%Tbd%drainncprv -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -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 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 flipv of variable flag_flip from new to old metadata -DEBUG: Updating local name of variable flag_flip from flipv to GFS_Control%flipv -DEBUG: Variable index_for_graupel_effective_radius was in old metadata format and has already been converted -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 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 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 htswc 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 htswc to GFS_Data(cdata%blk_no)%Tbd%htswc -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 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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 con_p0 of variable standard_atmospheric_pressure from new to old metadata -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -DEBUG: Variable index_for_snow_effective_radius was in old metadata format and has already been converted -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 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 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 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 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 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 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 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 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 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 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 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 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 -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 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 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 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 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 -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 -DEBUG: Variable index_for_cloud_liquid_water_effective_radius was in old metadata format and has already been converted -INFO: Converting local name aero_in of variable flag_for_aerosol_input_MG from new to old metadata -DEBUG: Updating local name of variable flag_for_aerosol_input_MG from aero_in to GFS_Control%aero_in -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 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 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 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 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 -DEBUG: Variable index_for_graupel_number_concentration was in old metadata format and has already been converted -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 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 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 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 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 kind_LOGICAL of variable kind_LOGICAL from new to old metadata -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 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 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) -DEBUG: Variable index_for_ice_effective_radius was in old metadata format and has already been converted -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 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 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 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 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 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 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 -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) -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 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 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 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 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 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 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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial from new to old metadata -DEBUG: Updating local name of variable surface_y_momentum_flux_for_coupling_interstitial from dvsfc_cice to GFS_Interstitial(cdata%thrd_no)%dvsfc_cice -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -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)%Tbd%raincprv -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 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 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) -DEBUG: Variable index_for_turbulent_kinetic_energy was in old metadata format and has already been converted -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 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 -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 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 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 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 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 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 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 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 -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) -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 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 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 qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy 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 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 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 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 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 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 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 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 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 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 -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 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 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 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 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) -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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial from new to old metadata -DEBUG: Updating local name of variable surface_upwelling_longwave_flux_for_coupling_interstitial from ulwsfc_cice to GFS_Interstitial(cdata%thrd_no)%ulwsfc_cice -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 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 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 -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 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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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) -DEBUG: Variable index_for_snow_number_concentration was in old metadata format and has already been converted -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 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 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 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 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 -DEBUG: Variable ccpp_thread_number was in old metadata format and has already been converted -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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable flag_for_ozone_physics from oz_phys to GFS_Control%oz_phys -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -DEBUG: Variable array_dimension_of_2d_arrays_for_microphysics was in old metadata format and has already been converted -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 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 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 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 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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d was in old metadata format and has already been converted -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 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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Variable index_for_ice_cloud_number_concentration was in old metadata format and has already been converted -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 -DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from htlw0 to GFS_Data(cdata%blk_no)%Tbd%htlw0 -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 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 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 htlwc 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 htlwc to GFS_Data(cdata%blk_no)%Tbd%htlwc -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 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 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 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 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 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 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 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 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 con_t0c of variable temperature_at_zero_celsius from new to old metadata -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 -DEBUG: Variable index_for_cloud_fraction_in_3d_arrays_for_microphysics was in old metadata format and has already been converted -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 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 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 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 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 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 -DEBUG: Updating local name of variable instantaneous_dry_deposition from drydep to GFS_Data(cdata%blk_no)%Intdiag%drydep -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 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 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 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 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 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 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 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 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 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 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 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 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 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 isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -DEBUG: Updating local name of variable flag_for_combination_of_sppt_with_isppt_deep from isppt_deep to GFS_Control%isppt_deep -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 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 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 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 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 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 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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -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 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 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 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 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 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 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 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 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 uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -DEBUG: Updating local name of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from uconvtend to GFS_Data(cdata%blk_no)%Coupling%uconvtend -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 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 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 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 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 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 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 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 mom4ice of variable flag_for_mom4_coupling from new to old metadata -DEBUG: Updating local name of variable flag_for_mom4_coupling from mom4ice to GFS_Control%mom4ice -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 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 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 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 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 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 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)%Tbd%graupelprv -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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -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 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: Metadata table for model FV3 written to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 GFS_surface_composites.F90 with registry OrderedDict([('GFS_surface_composites_pre', {'GFS_surface_composites_pre': {'GFS_surface_composites_pre_run': [17, 147], 'GFS_surface_composites_pre_finalize': [12, 13], 'GFS_surface_composites_pre_init': [10, 11]}}), ('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, 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': [17, 147], 'GFS_surface_composites_pre_finalize': [12, 13], 'GFS_surface_composites_pre_init': [10, 11]}}), ('GFS_surface_composites_inter', {'GFS_surface_composites_inter': {'GFS_surface_composites_inter_run': [162, 198], 'GFS_surface_composites_inter_init': [155, 156], 'GFS_surface_composites_inter_finalize': [157, 158]}}), ('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 -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': [17, 147], 'GFS_surface_composites_pre_finalize': [12, 13], 'GFS_surface_composites_pre_init': [10, 11]}}), ('GFS_surface_composites_inter', {'GFS_surface_composites_inter': {'GFS_surface_composites_inter_run': [162, 198], 'GFS_surface_composites_inter_init': [155, 156], 'GFS_surface_composites_inter_finalize': [157, 158]}}), ('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, 414]}})]) -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, 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, 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 -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, 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, 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 sfc_ocean.F with registry OrderedDict([('sfc_ocean', {'sfc_ocean': {'sfc_ocean_finalize': [11, 12], 'sfc_ocean_init': [7, 8], 'sfc_ocean_run': [18, 134]}})]) -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 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 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 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 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, kinematic_surface_upward_latent_heat_flux, 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 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, tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step, 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, 93], '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 -DEBUG: Variables in subroutine GFS_SCNV_generic_post_init: -DEBUG: Variables in subroutine GFS_SCNV_generic_post_finalize: -DEBUG: Parsing file GFS_rrtmg_pre.F90 with registry OrderedDict([('GFS_rrtmg_pre', {'GFS_rrtmg_pre': {'GFS_rrtmg_pre_finalize': [622, 623], 'GFS_rrtmg_pre_init': [9, 10], 'GFS_rrtmg_pre_run': [16, 619]}})]) -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, 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: 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, 615], '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, soil_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, soil_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 samfdeepcnv.f with registry OrderedDict([('samfdeepcnv', {'samfdeepcnv': {'samfdeepcnv_run': [63, 2759], '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, flag_for_cellular_automata, fraction_of_cellular_automata_for_deep_convection, 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 satmedmfvdif.F with registry OrderedDict([('satmedmfvdif', {'satmedmfvdif': {'satmedmfvdif_init': [6, 7], 'satmedmfvdif_finalize': [8, 9], 'satmedmfvdif_run': [30, 1450]}})]) -DEBUG: Module name: satmedmfvdif -DEBUG: Scheme name: satmedmfvdif -DEBUG: Variables in subroutine satmedmfvdif_init: -DEBUG: Variables in subroutine satmedmfvdif_finalize: -DEBUG: Variables in subroutine satmedmfvdif_run: 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, kinematic_surface_upward_latent_heat_flux, 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, ccpp_error_message, ccpp_error_flag -DEBUG: Parsing file ozphys.f with registry OrderedDict([('ozphys', {'ozphys': {'ozphys_run': [27, 158], 'ozphys_finalize': [15, 16], 'ozphys_init': [9, 10]}})]) -DEBUG: Skipping blank table ozphys_finalize -DEBUG: Skipping blank table ozphys_init -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: -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 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_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': [31, 137], 'ozphys_2015_finalize': [13, 14], 'ozphys_2015_init': [7, 8]}})]) -DEBUG: Skipping blank table ozphys_2015_finalize -DEBUG: Skipping blank table ozphys_2015_init -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: -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, 21], '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', {})]) -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, 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, 21], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [27, 28], 'GFS_suite_interstitial_phys_reset_run': [32, 43], 'GFS_suite_interstitial_phys_reset_init': [25, 26]}}), ('GFS_suite_interstitial_1', {}), ('GFS_suite_interstitial_2', {}), ('GFS_suite_stateout_reset', {}), ('GFS_suite_stateout_update', {}), ('GFS_suite_interstitial_3', {}), ('GFS_suite_interstitial_4', {})]) -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, ccpp_error_message, ccpp_error_flag, GFS_control_type_instance -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, 21], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [27, 28], 'GFS_suite_interstitial_phys_reset_run': [32, 43], 'GFS_suite_interstitial_phys_reset_init': [25, 26]}}), ('GFS_suite_interstitial_1', {'GFS_suite_interstitial_1': {'GFS_suite_interstitial_1_init': [47, 48], 'GFS_suite_interstitial_1_finalize': [49, 50], 'GFS_suite_interstitial_1_run': [54, 94]}}), ('GFS_suite_interstitial_2', {}), ('GFS_suite_stateout_reset', {}), ('GFS_suite_stateout_update', {}), ('GFS_suite_interstitial_3', {}), ('GFS_suite_interstitial_4', {})]) -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, 21], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [27, 28], 'GFS_suite_interstitial_phys_reset_run': [32, 43], 'GFS_suite_interstitial_phys_reset_init': [25, 26]}}), ('GFS_suite_interstitial_1', {'GFS_suite_interstitial_1': {'GFS_suite_interstitial_1_init': [47, 48], 'GFS_suite_interstitial_1_finalize': [49, 50], 'GFS_suite_interstitial_1_run': [54, 94]}}), ('GFS_suite_interstitial_2', {'GFS_suite_interstitial_2': {'GFS_suite_interstitial_2_init': [100, 101], 'GFS_suite_interstitial_2_finalize': [102, 103], 'GFS_suite_interstitial_2_run': [109, 253]}}), ('GFS_suite_stateout_reset', {}), ('GFS_suite_stateout_update', {}), ('GFS_suite_interstitial_3', {}), ('GFS_suite_interstitial_4', {})]) -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_timestep, tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep, 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, 21], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [27, 28], 'GFS_suite_interstitial_phys_reset_run': [32, 43], 'GFS_suite_interstitial_phys_reset_init': [25, 26]}}), ('GFS_suite_interstitial_1', {'GFS_suite_interstitial_1': {'GFS_suite_interstitial_1_init': [47, 48], 'GFS_suite_interstitial_1_finalize': [49, 50], 'GFS_suite_interstitial_1_run': [54, 94]}}), ('GFS_suite_interstitial_2', {'GFS_suite_interstitial_2': {'GFS_suite_interstitial_2_init': [100, 101], 'GFS_suite_interstitial_2_finalize': [102, 103], 'GFS_suite_interstitial_2_run': [109, 253]}}), ('GFS_suite_stateout_reset', {'GFS_suite_stateout_reset': {'GFS_suite_stateout_reset_finalize': [259, 260], 'GFS_suite_stateout_reset_init': [257, 258], 'GFS_suite_stateout_reset_run': [264, 284]}}), ('GFS_suite_stateout_update', {}), ('GFS_suite_interstitial_3', {}), ('GFS_suite_interstitial_4', {})]) -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, 21], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [27, 28], 'GFS_suite_interstitial_phys_reset_run': [32, 43], 'GFS_suite_interstitial_phys_reset_init': [25, 26]}}), ('GFS_suite_interstitial_1', {'GFS_suite_interstitial_1': {'GFS_suite_interstitial_1_init': [47, 48], 'GFS_suite_interstitial_1_finalize': [49, 50], 'GFS_suite_interstitial_1_run': [54, 94]}}), ('GFS_suite_interstitial_2', {'GFS_suite_interstitial_2': {'GFS_suite_interstitial_2_init': [100, 101], 'GFS_suite_interstitial_2_finalize': [102, 103], 'GFS_suite_interstitial_2_run': [109, 253]}}), ('GFS_suite_stateout_reset', {'GFS_suite_stateout_reset': {'GFS_suite_stateout_reset_finalize': [259, 260], 'GFS_suite_stateout_reset_init': [257, 258], 'GFS_suite_stateout_reset_run': [264, 284]}}), ('GFS_suite_stateout_update', {'GFS_suite_stateout_update': {'GFS_suite_stateout_update_init': [288, 289], 'GFS_suite_stateout_update_run': [295, 318], 'GFS_suite_stateout_update_finalize': [290, 291]}}), ('GFS_suite_interstitial_3', {}), ('GFS_suite_interstitial_4', {})]) -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, 21], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [27, 28], 'GFS_suite_interstitial_phys_reset_run': [32, 43], 'GFS_suite_interstitial_phys_reset_init': [25, 26]}}), ('GFS_suite_interstitial_1', {'GFS_suite_interstitial_1': {'GFS_suite_interstitial_1_init': [47, 48], 'GFS_suite_interstitial_1_finalize': [49, 50], 'GFS_suite_interstitial_1_run': [54, 94]}}), ('GFS_suite_interstitial_2', {'GFS_suite_interstitial_2': {'GFS_suite_interstitial_2_init': [100, 101], 'GFS_suite_interstitial_2_finalize': [102, 103], 'GFS_suite_interstitial_2_run': [109, 253]}}), ('GFS_suite_stateout_reset', {'GFS_suite_stateout_reset': {'GFS_suite_stateout_reset_finalize': [259, 260], 'GFS_suite_stateout_reset_init': [257, 258], 'GFS_suite_stateout_reset_run': [264, 284]}}), ('GFS_suite_stateout_update', {'GFS_suite_stateout_update': {'GFS_suite_stateout_update_init': [288, 289], 'GFS_suite_stateout_update_run': [295, 318], 'GFS_suite_stateout_update_finalize': [290, 291]}}), ('GFS_suite_interstitial_3', {'GFS_suite_interstitial_3': {'GFS_suite_interstitial_3_run': [331, 480], 'GFS_suite_interstitial_3_finalize': [324, 325], 'GFS_suite_interstitial_3_init': [322, 323]}}), ('GFS_suite_interstitial_4', {})]) -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_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, 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, 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, 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, 21], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [27, 28], 'GFS_suite_interstitial_phys_reset_run': [32, 43], 'GFS_suite_interstitial_phys_reset_init': [25, 26]}}), ('GFS_suite_interstitial_1', {'GFS_suite_interstitial_1': {'GFS_suite_interstitial_1_init': [47, 48], 'GFS_suite_interstitial_1_finalize': [49, 50], 'GFS_suite_interstitial_1_run': [54, 94]}}), ('GFS_suite_interstitial_2', {'GFS_suite_interstitial_2': {'GFS_suite_interstitial_2_init': [100, 101], 'GFS_suite_interstitial_2_finalize': [102, 103], 'GFS_suite_interstitial_2_run': [109, 253]}}), ('GFS_suite_stateout_reset', {'GFS_suite_stateout_reset': {'GFS_suite_stateout_reset_finalize': [259, 260], 'GFS_suite_stateout_reset_init': [257, 258], 'GFS_suite_stateout_reset_run': [264, 284]}}), ('GFS_suite_stateout_update', {'GFS_suite_stateout_update': {'GFS_suite_stateout_update_init': [288, 289], 'GFS_suite_stateout_update_run': [295, 318], 'GFS_suite_stateout_update_finalize': [290, 291]}}), ('GFS_suite_interstitial_3', {'GFS_suite_interstitial_3': {'GFS_suite_interstitial_3_run': [331, 480], 'GFS_suite_interstitial_3_finalize': [324, 325], 'GFS_suite_interstitial_3_init': [322, 323]}}), ('GFS_suite_interstitial_4', {'GFS_suite_interstitial_4': {'GFS_suite_interstitial_4_finalize': [486, 487], 'GFS_suite_interstitial_4_run': [491, 580], 'GFS_suite_interstitial_4_init': [484, 485]}})]) -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, 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_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, index_for_liquid_cloud_number_concentration, index_for_ice_cloud_number_concentration, pi, instantaneous_water_vapor_specific_humidity_tendency_due_to_convection -DEBUG: Variables in subroutine GFS_suite_interstitial_4_init: -DEBUG: Parsing file samfshalcnv.f with registry OrderedDict([('samfshalcnv', {'samfshalcnv': {'samfshalcnv_run': [43, 1782], 'samfshalcnv_finalize': [17, 18], 'samfshalcnv_init': [11, 12]}}), ('samfshalcnv_post', {})]) -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 samfshalcnv.f with registry OrderedDict([('samfshalcnv', {'samfshalcnv': {'samfshalcnv_run': [43, 1782], 'samfshalcnv_finalize': [17, 18], 'samfshalcnv_init': [11, 12]}}), ('samfshalcnv_post', {'samfshalcnv_post': {'samfshalcnv_post_run': [1793, 1839], 'samfshalcnv_post_finalize': [1846, 1847], 'samfshalcnv_post_init': [1842, 1843]}})]) -DEBUG: Module name: samfshalcnv_post -DEBUG: Scheme name: samfshalcnv_post -DEBUG: Variables in subroutine samfshalcnv_post_run: horizontal_loop_extent, vertical_dimension, lwe_thickness_of_shallow_convective_precipitation_amount, convective_cloud_water_mixing_ratio, convective_cloud_cover, ccpp_error_message, ccpp_error_flag, flag_diagnostics, flag_shallow_convective_cloud, dynamics_to_physics_timestep_ratio, 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_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 -DEBUG: Variables in subroutine samfshalcnv_post_finalize: -DEBUG: Variables in subroutine samfshalcnv_post_init: -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': [23, 24], 'noahmpdrv_run': [33, 699], 'noahmpdrv_init': [11, 22]}})]) -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_canopy_heat_storage, 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 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, kinematic_surface_upward_latent_heat_flux, 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 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, 159], '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, 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, 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, surface_upwelling_longwave_flux_for_coupling, surface_upwelling_longwave_flux_for_coupling_interstitial, surface_x_momentum_flux_for_coupling_interstitial, surface_y_momentum_flux_for_coupling_interstitial, surface_upward_sensible_heat_flux_for_coupling_interstitial, surface_upward_latent_heat_flux_for_coupling_interstitial, sea_ice_temperature, sea_surface_temperature, sea_ice_concentration, sea_ice_thickness, flag_nonzero_land_surface_fraction, flag_nonzero_sea_ice_surface_fraction, flag_nonzero_wet_surface_fraction, wind_speed_at_lowest_model_layer, x_wind_at_lowest_model_layer, y_wind_at_lowest_model_layer, surface_wind_enhancement_due_to_convection, 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, 159], 'GFS_surface_generic_pre_init': [10, 11]}}), ('GFS_surface_generic_post', {'GFS_surface_generic_post': {'GFS_surface_generic_post_run': [176, 282], 'GFS_surface_generic_post_finalize': [171, 172], 'GFS_surface_generic_post_init': [169, 170]}})]) -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, flag_nonzero_sea_ice_surface_fraction, flag_nonzero_wet_surface_fraction, x_wind_at_lowest_model_layer, y_wind_at_lowest_model_layer, ccpp_error_message, ccpp_error_flag, flag_for_wave_coupling, flag_diagnostics, 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_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 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 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, 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, 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 GFS_debug.F90 with registry OrderedDict([('GFS_diagtoscreen', {'GFS_diagtoscreen': {'GFS_diagtoscreen_init': [26, 27], 'GFS_diagtoscreen_finalize': [28, 29], 'GFS_diagtoscreen_run': [33, 486]}}), ('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, 486]}}), ('GFS_interstitialtoscreen', {'GFS_interstitialtoscreen': {'GFS_interstitialtoscreen_finalize': [654, 655], 'GFS_interstitialtoscreen_run': [659, 733], 'GFS_interstitialtoscreen_init': [652, 653]}}), ('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, 486]}}), ('GFS_interstitialtoscreen', {'GFS_interstitialtoscreen': {'GFS_interstitialtoscreen_finalize': [654, 655], 'GFS_interstitialtoscreen_run': [659, 733], 'GFS_interstitialtoscreen_init': [652, 653]}}), ('GFS_abort', {'GFS_abort': {'GFS_abort_init': [739, 740], 'GFS_abort_run': [746, 763], 'GFS_abort_finalize': [741, 742]}}), ('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, 486]}}), ('GFS_interstitialtoscreen', {'GFS_interstitialtoscreen': {'GFS_interstitialtoscreen_finalize': [654, 655], 'GFS_interstitialtoscreen_run': [659, 733], 'GFS_interstitialtoscreen_init': [652, 653]}}), ('GFS_abort', {'GFS_abort': {'GFS_abort_init': [739, 740], 'GFS_abort_run': [746, 763], 'GFS_abort_finalize': [741, 742]}}), ('GFS_checkland', {'GFS_checkland': {'GFS_checkland_run': [776, 848], 'GFS_checkland_finalize': [771, 772], 'GFS_checkland_init': [769, 770]}})]) -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 module_MYNNrad_pre.F90 with registry OrderedDict([('mynnrad_pre', {'mynnrad_pre': {'mynnrad_pre_init': [6, 7], 'mynnrad_pre_run': [27, 93], '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, 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 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 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, kinematic_surface_upward_latent_heat_flux, 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 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, tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step, ccpp_error_message, ccpp_error_flag -DEBUG: Variables in subroutine rrtmg_lw_post_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_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 -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, 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 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 cu_ntiedtke.F90 with registry OrderedDict([('cu_ntiedtke', {'cu_ntiedtke': {'cu_ntiedtke_init': [77, 93], 'cu_ntiedtke_finalize': [98, 99], 'cu_ntiedtke_run': [112, 295]}})]) -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, 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_total_tracers, 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 cires_ugwp_post.F90 with registry OrderedDict([('cires_ugwp_post', {'cires_ugwp_post': {'cires_ugwp_post_init': [8, 9], 'cires_ugwp_post_run': [16, 67], 'cires_ugwp_post_finalize': [70, 71]}})]) -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, flag_diagnostics, flag_diagnostics_3D, instantaneous_x_stress_due_to_gravity_wave_drag, instantaneous_y_stress_due_to_gravity_wave_drag, 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, cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag, ccpp_error_message, ccpp_error_flag -DEBUG: Variables in subroutine cires_ugwp_post_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, kinematic_surface_upward_latent_heat_flux, 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 sfc_diff.f with registry OrderedDict([('sfc_diff', {'sfc_diff': {'sfc_diff_init': [12, 13], 'sfc_diff_finalize': [14, 15], 'sfc_diff_run': [52, 290]}})]) -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 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 sfc_noahmp_pre.F90 with registry OrderedDict([('sfc_noahmp_pre', {'sfc_noahmp_pre': {'sfc_noahmp_pre_finalize': [10, 11], 'sfc_noahmp_pre_init': [8, 9], 'sfc_noahmp_pre_run': [16, 42]}})]) -DEBUG: Module name: sfc_noahmp_pre -DEBUG: Scheme name: sfc_noahmp_pre -DEBUG: Variables in subroutine sfc_noahmp_pre_finalize: -DEBUG: Variables in subroutine sfc_noahmp_pre_init: -DEBUG: Variables in subroutine sfc_noahmp_pre_run: horizontal_loop_extent, flag_for_land_surface_scheme, flag_for_noahmp_land_surface_scheme, flag_for_microphysics_scheme, flag_for_gfdl_microphysics_scheme, flag_for_morrison_gettelman_microphysics_scheme, time_step_for_physics, 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, explicit_rainfall_rate_from_previous_timestep, convective_precipitation_rate_from_previous_timestep, ice_precipitation_rate_from_previous_timestep, snow_precipitation_rate_from_previous_timestep, graupel_precipitation_rate_from_previous_timestep, 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', {})]) -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, mass_fraction_of_convective_cloud_liquid_water, mass_fraction_of_convective_cloud_ice, convective_cloud_fraction_for_microphysics, 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 m_micro.F90 with registry OrderedDict([('m_micro', {'m_micro': {'m_micro_run': [71, 1239], 'm_micro_init': [17, 50], 'm_micro_finalize': [55, 56]}})]) -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_timestep, tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep, 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, flag_for_aerosol_input_MG, in_number_concentration, ccn_number_concentration, flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics, flag_skip_macro, flag_print, mg_tuning_factor_for_alphas, mg_minimum_cloud_condensed_water_and_ice_mixing_ratio, flag_for_pdf_for_morrison_gettelman_microphysics_scheme, horizontal_index_of_printed_column, 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, 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 gfdl_fv_sat_adj.F90 with registry OrderedDict([('fv_sat_adj', {'fv_sat_adj': {'fv_sat_adj_finalize': [155, 172], 'fv_sat_adj_run': [186, 307], 'fv_sat_adj_init': [104, 149]}})]) -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 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 gcm_shoc.F90 with registry OrderedDict([('shoc', {'shoc': {'shoc_finalize': [11, 12], 'shoc_init': [9, 10], 'shoc_run': [18, 144]}})]) -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, flag_for_shoc, flag_for_shoc_after_convection, flag_mg3_as_mg2, flag_for_microphysics_scheme, flag_for_gfdl_microphysics_scheme, flag_for_zhao_carr_microphysics_scheme, flag_for_zhao_carr_pdf_microphysics_scheme, flag_for_morrison_gettelman_microphysics_scheme, number_of_frozen_precipitation_species, 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, 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, time_step_for_physics, mpi_rank, air_pressure, 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, kinematic_surface_upward_latent_heat_flux, prandtl_number, flag_skip_macro, ice_water_mixing_ratio_convective_transport_tracer, cloud_condensed_water_mixing_ratio_convective_transport_tracer, cloud_condensed_water_mixing_ratio_updated_by_physics, cloud_droplet_number_concentration_updated_by_physics, ice_number_concentration_updated_by_physics, air_temperature_updated_by_physics, water_vapor_specific_humidity_updated_by_physics, 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_rrtmg_post.F90 with registry OrderedDict([('GFS_rrtmg_post', {'GFS_rrtmg_post': {'GFS_rrtmg_post_init': [8, 9], 'GFS_rrtmg_post_run': [13, 140], 'GFS_rrtmg_post_finalize': [143, 144]}})]) -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, ccpp_error_message, ccpp_error_flag -DEBUG: Variables in subroutine GFS_rrtmg_post_finalize: -DEBUG: Parsing file GFS_GWD_generic.F90 with registry OrderedDict([('GFS_GWD_generic_pre', {'GFS_GWD_generic_pre': {'GFS_GWD_generic_pre_run': [15, 84], 'GFS_GWD_generic_pre_finalize': [91, 92], 'GFS_GWD_generic_pre_init': [7, 8]}})]) -DEBUG: Skipping blank table GFS_GWD_generic_pre_finalize -DEBUG: Skipping blank table GFS_GWD_generic_pre_init -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 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 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_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, 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, 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, time_step_for_physics -DEBUG: Variables in subroutine GFS_MP_generic_post_finalize: -DEBUG: Parsing file cu_gf_driver.F90 with registry OrderedDict([('cu_gf_driver', {'cu_gf_driver': {'cu_gf_driver_run': [54, 665], 'cu_gf_driver_init': [17, 33], 'cu_gf_driver_finalize': [38, 39]}})]) -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: 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, 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 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, 205], '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, 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_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, 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, 205], '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': [209, 210], 'GFS_PBL_generic_post_finalize': [211, 212], 'GFS_PBL_generic_post_run': [216, 468]}})]) -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, 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_chemistry_coupling, flag_for_aerosol_physics, flag_for_hedmf, flag_for_shoc, flag_for_scale_aware_TKE_moist_EDMF_PBL, 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_timestep, tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep, 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, kinematic_surface_upward_sensible_heat_flux, instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling, sea_area_fraction, sea_ice_concentration, surface_x_momentum_flux_for_coupling_interstitial, surface_y_momentum_flux_for_coupling_interstitial, surface_upward_sensible_heat_flux_for_coupling_interstitial, surface_upward_latent_heat_flux_for_coupling_interstitial, 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 mp_thompson_post.F90 with registry OrderedDict([('mp_thompson_post', {'mp_thompson_post': {'mp_thompson_post_init': [14, 40], 'mp_thompson_post_finalize': [101, 113], 'mp_thompson_post_run': [46, 95]}})]) -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, mpi_comm, mpi_rank, mpi_root -DEBUG: Parsing file mp_thompson.F90 with registry OrderedDict([('mp_thompson', {'mp_thompson': {'mp_thompson_run': [95, 282], 'mp_thompson_finalize': [289, 299], 'mp_thompson_init': [18, 86]}})]) -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_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 gwdps.f with registry OrderedDict([('gwdps', {'gwdps': {'gwdps_init': [8, 9], 'gwdps_run': [193, 1257], 'gwdps_finalize': [1262, 1263]}}), ('gwdps_post', {})]) -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 gwdps.f with registry OrderedDict([('gwdps', {'gwdps': {'gwdps_init': [8, 9], 'gwdps_run': [193, 1257], 'gwdps_finalize': [1262, 1263]}}), ('gwdps_post', {'gwdps_post': {'gwdps_post_init': [1271, 1272], 'gwdps_post_finalize': [1300, 1301], 'gwdps_post_run': [1276, 1297]}})]) -DEBUG: Skipping blank table gwdps_post_init -DEBUG: Skipping blank table gwdps_post_finalize -DEBUG: Module name: gwdps_post -DEBUG: Scheme name: gwdps_post -DEBUG: Variables in subroutine gwdps_post_init: -DEBUG: Variables in subroutine gwdps_post_finalize: -DEBUG: Variables in subroutine gwdps_post_run: tendency_of_y_wind_due_to_model_physics, tendency_of_x_wind_due_to_model_physics, tendency_of_air_temperature_due_to_model_physics, instantaneous_x_stress_due_to_gravity_wave_drag, instantaneous_y_stress_due_to_gravity_wave_drag, ccpp_error_message, ccpp_error_flag, 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_orographic_gravity_wave_drag, cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag, cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag -DEBUG: Parsing file cires_ugwp.F90 with registry OrderedDict([('cires_ugwp', {'cires_ugwp': {'cires_ugwp_run': [105, 265], 'cires_ugwp_finalize': [80, 91], 'cires_ugwp_init': [29, 70]}})]) -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, 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 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 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_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, kinematic_surface_upward_latent_heat_flux, 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_air_temperature_due_to_longwave_heating_on_radiation_time_step, 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_timestep, tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep, 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': [118, 830], '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, 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, 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 GFS_stochastics.F90 with registry OrderedDict([('GFS_stochastics', {'GFS_stochastics': {'GFS_stochastics_run': [22, 168], '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, 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, 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 drag_suite.F90 with registry OrderedDict([('drag_suite_pre', {'drag_suite_pre': {'drag_suite_pre_init': [9, 10], 'drag_suite_pre_finalize': [82, 83], 'drag_suite_pre_run': [17, 75]}}), ('drag_suite', {}), ('drag_suite_post', {})]) -DEBUG: Skipping blank table drag_suite_pre_init -DEBUG: Skipping blank table drag_suite_pre_finalize -DEBUG: Module name: drag_suite_pre -DEBUG: Scheme name: drag_suite_pre -DEBUG: Variables in subroutine drag_suite_pre_init: -DEBUG: Variables in subroutine drag_suite_pre_finalize: -DEBUG: Variables in subroutine drag_suite_pre_run: horizontal_loop_extent, number_of_statistical_measures_of_subgrid_orography, statistical_measures_of_subgrid_orography, 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, ccpp_error_message, ccpp_error_flag -DEBUG: Parsing file drag_suite.F90 with registry OrderedDict([('drag_suite_pre', {'drag_suite_pre': {'drag_suite_pre_init': [9, 10], 'drag_suite_pre_finalize': [82, 83], 'drag_suite_pre_run': [17, 75]}}), ('drag_suite', {'drag_suite': {'drag_suite_finalize': [1259, 1260], 'drag_suite_run': [268, 1254], 'drag_suite_init': [90, 91]}}), ('drag_suite_post', {})]) -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, 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, ccpp_error_message, ccpp_error_flag, 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, 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 -DEBUG: Variables in subroutine drag_suite_init: -DEBUG: Parsing file drag_suite.F90 with registry OrderedDict([('drag_suite_pre', {'drag_suite_pre': {'drag_suite_pre_init': [9, 10], 'drag_suite_pre_finalize': [82, 83], 'drag_suite_pre_run': [17, 75]}}), ('drag_suite', {'drag_suite': {'drag_suite_finalize': [1259, 1260], 'drag_suite_run': [268, 1254], 'drag_suite_init': [90, 91]}}), ('drag_suite_post', {'drag_suite_post': {'drag_suite_post_init': [1268, 1269], 'drag_suite_post_finalize': [1297, 1298], 'drag_suite_post_run': [1273, 1294]}})]) -DEBUG: Skipping blank table drag_suite_post_init -DEBUG: Skipping blank table drag_suite_post_finalize -DEBUG: Module name: drag_suite_post -DEBUG: Scheme name: drag_suite_post -DEBUG: Variables in subroutine drag_suite_post_init: -DEBUG: Variables in subroutine drag_suite_post_finalize: -DEBUG: Variables in subroutine drag_suite_post_run: ccpp_error_message, ccpp_error_flag, tendency_of_y_wind_due_to_model_physics, tendency_of_x_wind_due_to_model_physics, tendency_of_air_temperature_due_to_model_physics, 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_orographic_gravity_wave_drag, cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag, cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag -DEBUG: Parsing file sfc_cice.f with registry OrderedDict([('sfc_cice', {'sfc_cice': {'sfc_cice_finalize': [12, 13], 'sfc_cice_run': [31, 120], '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, flag_for_chemistry_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_interstitial, surface_upward_sensible_heat_flux_for_coupling_interstitial, surface_x_momentum_flux_for_coupling_interstitial, surface_y_momentum_flux_for_coupling_interstitial, 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 module_MYNNrad_post.F90 with registry OrderedDict([('mynnrad_post', {'mynnrad_post': {'mynnrad_post_finalize': [7, 8], 'mynnrad_post_run': [17, 44], '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, 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 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, 38], '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, soil_vertical_dimension_for_land_surface_model, soil_vertical_dimension, flag_nonzero_land_surface_fraction, 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, 38], 'lsm_ruc_sfc_sice_pre_init': [6, 7]}}), ('lsm_ruc_sfc_sice_post', {'lsm_ruc_sfc_sice_post': {'lsm_ruc_sfc_sice_post_finalize': [48, 49], 'lsm_ruc_sfc_sice_post_init': [46, 47], 'lsm_ruc_sfc_sice_post_run': [55, 78]}})]) -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, soil_vertical_dimension_for_land_surface_model, soil_vertical_dimension, flag_nonzero_land_surface_fraction, soil_temperature, soil_temperature_for_land_surface_model, ccpp_error_message, ccpp_error_flag -DEBUG: Parsing file GFS_DCNV_generic.F90 with registry OrderedDict([('GFS_DCNV_generic_pre', {'GFS_DCNV_generic_pre': {'GFS_DCNV_generic_pre_run': [14, 63], '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_cellular_automata, flag_for_combination_of_sppt_with_isppt_deep, 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, 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, 63], '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': [67, 68], 'GFS_DCNV_generic_post_run': [74, 161], 'GFS_DCNV_generic_post_finalize': [69, 70]}})]) -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, flag_for_cellular_automata, flag_for_combination_of_sppt_with_isppt_deep, 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, ice_water_mixing_ratio_convective_transport_tracer, cloud_condensed_water_mixing_ratio_convective_transport_tracer, 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, convective_available_potential_energy_for_coupling, tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep, tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep, tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep, tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep -DEBUG: Variables in subroutine GFS_DCNV_generic_post_finalize: -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 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 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, 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 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 dcyc2.f with registry OrderedDict([('dcyc2t3', {'dcyc2t3': {'dcyc2t3_init': [14, 15], 'dcyc2t3_run': [166, 298], 'dcyc2t3_finalize': [18, 19]}}), ('dcyc2t3_post', {})]) -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 dcyc2.f with registry OrderedDict([('dcyc2t3', {'dcyc2t3': {'dcyc2t3_init': [14, 15], 'dcyc2t3_run': [166, 298], 'dcyc2t3_finalize': [18, 19]}}), ('dcyc2t3_post', {'dcyc2t3_post': {'dcyc2t3_post_finalize': [313, 314], 'dcyc2t3_post_run': [321, 336], 'dcyc2t3_post_init': [309, 310]}})]) -DEBUG: Skipping blank table dcyc2t3_post_finalize -DEBUG: Skipping blank table dcyc2t3_post_init -DEBUG: Module name: dcyc2t3_post -DEBUG: Scheme name: dcyc2t3_post -DEBUG: Variables in subroutine dcyc2t3_post_finalize: -DEBUG: Variables in subroutine dcyc2t3_post_run: horizontal_loop_extent, surface_downwelling_shortwave_flux, surface_net_downwelling_shortwave_flux, ccpp_error_message, ccpp_error_flag, surface_upwelling_shortwave_flux -DEBUG: Variables in subroutine dcyc2t3_post_init: -DEBUG: Parsing file moninshoc.f with registry OrderedDict([('moninshoc', {'moninshoc': {'moninshoc_run': [21, 529], '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, kinematic_surface_upward_latent_heat_flux, 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, flag_print, horizontal_index_of_printed_column, mpi_rank, 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: -INFO: filtering out variable GFS_stateout_type_instance -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 cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -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 conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep -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 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 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 explicit_rainfall_rate_from_previous_timestep -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_aerosol_input_MG -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_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_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_shoc_after_convection -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 graupel_precipitation_rate_from_previous_timestep -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_precipitation_rate_from_previous_timestep -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 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 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 namelist_filename_for_internal_file_reads -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_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_precipitation_rate_from_previous_timestep -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_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 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_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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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 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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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 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_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_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_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_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_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_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_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_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_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_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_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 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 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_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_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_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 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 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_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_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_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_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_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_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_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 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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%del 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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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 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_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 angle_from_east_of_maximum_subgrid_orographic_variations in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_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_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 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_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 anisotropy_of_subgrid_orography in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_pre_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 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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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 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_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 asymmetry_of_subgrid_orography in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_pre_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 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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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 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_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_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 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_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_maximum in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_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 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_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 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_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 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 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_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_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 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_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_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_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_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_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_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 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 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_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_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_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_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_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 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 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_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_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_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_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_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_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_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_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_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_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_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run 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_ozphys SCHEME_ozphys SUBROUTINE_ozphys_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_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_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_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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target cdata%errflg in module ccpp_types -DEBUG: Requested variable ccpp_error_flag in MODULE_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_run 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_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_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_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_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_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_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_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target cdata%errflg in module ccpp_types -DEBUG: Requested variable ccpp_error_flag in MODULE_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_post_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_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_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_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_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_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_post_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_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_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_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_cnvc90 SCHEME_cnvc90 SUBROUTINE_cnvc90_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target cdata%errflg in module ccpp_types -DEBUG: Requested variable ccpp_error_flag in MODULE_dcyc2t3_post SCHEME_dcyc2t3_post SUBROUTINE_dcyc2t3_post_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_post_run matched to target cdata%errmsg in module ccpp_types -DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_run matched to target cdata%errmsg in module ccpp_types -DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_run 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_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_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_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_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_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_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_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_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_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_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_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_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_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_post_run matched to target cdata%errmsg in module ccpp_types -DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_post_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_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_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_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_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_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_pre_run matched to target cdata%errmsg in module ccpp_types -DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_post_run matched to target cdata%errmsg in module ccpp_types -DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_post_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_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_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_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_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_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_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_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_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_dcyc2t3_post SCHEME_dcyc2t3_post SUBROUTINE_dcyc2t3_post_run matched to target cdata%errmsg in module ccpp_types -DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_dcyc2t3_post SCHEME_dcyc2t3_post SUBROUTINE_dcyc2t3_post_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_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_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 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 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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_convective_transport_tracer 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)%clw(:,:,2) 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_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_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_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_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_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_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_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_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 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 convective_available_potential_energy_for_coupling 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)%Coupling%cape 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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_post_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_pre SCHEME_m_micro_pre SUBROUTINE_m_micro_pre_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_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_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_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_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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_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_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_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 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_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 convexity_of_subgrid_orography in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_pre_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 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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Control%cdec 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 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 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_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_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_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_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_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_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_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_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_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_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_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_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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_orographic_gravity_wave_drag in MODULE_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_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_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_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_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_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_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_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_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_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_x_wind_due_to_orographic_gravity_wave_drag in MODULE_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_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_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_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_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_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_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_change_in_y_wind_due_to_orographic_gravity_wave_drag in MODULE_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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 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_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 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 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_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 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_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Control%slag 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 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 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_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_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_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_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_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_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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_post_run matched to target GFS_Control%lssav 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_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_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_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_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_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_post_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_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_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_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_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_h2ophys SCHEME_h2ophys SUBROUTINE_h2ophys_run matched to target GFS_Control%ldiag3d in module GFS_typedefs -DEBUG: Requested variable flag_diagnostics_3D in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Control%ldiag3d 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_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_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_post_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_post_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_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_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_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_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_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_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_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_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_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_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_canopy_heat_storage in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Control%lheatstrg 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_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_cellular_automata in MODULE_GFS_DCNV_generic_pre SCHEME_GFS_DCNV_generic_pre SUBROUTINE_GFS_DCNV_generic_pre_run matched to target GFS_Control%do_ca in module GFS_typedefs -DEBUG: Requested variable flag_for_cellular_automata in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Control%do_ca 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_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_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Control%cplchm 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_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_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_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_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_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_combination_of_sppt_with_isppt_deep in MODULE_GFS_DCNV_generic_pre SCHEME_GFS_DCNV_generic_pre SUBROUTINE_GFS_DCNV_generic_pre_run matched to target GFS_Control%isppt_deep in module GFS_typedefs -DEBUG: Requested variable flag_for_combination_of_sppt_with_isppt_deep in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Control%isppt_deep 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Control%frac_grid 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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_run matched to target GFS_Control%imp_physics_gfdl in module GFS_typedefs -DEBUG: Requested variable flag_for_gfdl_microphysics_scheme in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_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_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_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_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_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_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_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_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_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_run 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_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_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_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_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_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_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_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_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 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_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_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_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_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_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_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_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_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_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_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_run 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_for_zhao_carr_pdf_microphysics_scheme in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_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_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_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_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_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_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_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_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_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_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_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_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_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_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_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_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_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_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_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_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%icy 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_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_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_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_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_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_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_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_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%wet 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_gwdc SCHEME_gwdc SUBROUTINE_gwdc_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_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_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_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_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Control%lprnt in module GFS_typedefs -DEBUG: Requested variable flag_print in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_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_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_post_run matched to target GFS_Control%shcnvcw 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_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_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 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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_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 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_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_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_grid_box_with_subgrid_orography_higher_than_critical_height in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_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_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 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_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 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 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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_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_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_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_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_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_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_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_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_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_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_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_gwdps SCHEME_gwdps SUBROUTINE_gwdps_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run 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_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Data(cdata%blk_no)%Statein%phil 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_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_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_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_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_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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 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_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_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_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_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_ozphys SCHEME_ozphys SUBROUTINE_ozphys_run 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_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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_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_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_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_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_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_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_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_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_gwdps SCHEME_gwdps SUBROUTINE_gwdps_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_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_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 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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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 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_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 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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Control%blksz2(cdata%blk_no) 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_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_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_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_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_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_m_micro SCHEME_m_micro SUBROUTINE_m_micro_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_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_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_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_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_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 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_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_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_dcyc2t3_post SCHEME_dcyc2t3_post SUBROUTINE_dcyc2t3_post_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 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_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_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_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_convective_transport_tracer 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)%clw(:,:,1) 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_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_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_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_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_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_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_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_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 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_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_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_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_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_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_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_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_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_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_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Control%ntcw 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_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_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_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 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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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 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_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_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_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_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_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_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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_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_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_post_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_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_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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_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_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_post_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 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 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_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_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_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 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_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_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_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 julian_day in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Control%julian 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_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_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_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_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_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_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_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_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_shoc SCHEME_shoc SUBROUTINE_shoc_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 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_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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_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_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_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_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_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_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_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_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_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_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_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_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_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_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_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_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_shoc SCHEME_shoc SUBROUTINE_shoc_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 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_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_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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_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_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_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_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_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_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_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_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 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_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_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 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 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 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_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 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_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_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 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_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_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_run 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_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_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_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_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_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target con_hvap 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_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_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_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_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_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_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_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 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 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_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 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_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 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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%raincprv 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)%Tbd%raincprv in module GFS_typedefs -DEBUG: Requested variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep in MODULE_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_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_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_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_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_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_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_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_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_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_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_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_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_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_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%rainncprv 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)%Tbd%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_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%graupelprv 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)%Tbd%graupelprv in module GFS_typedefs -DEBUG: Requested variable lwe_thickness_of_graupel_amount_on_dynamics_timestep in MODULE_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_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_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_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_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%iceprv 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)%Tbd%iceprv in module GFS_typedefs -DEBUG: Requested variable lwe_thickness_of_ice_amount_on_dynamics_timestep in MODULE_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_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_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_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_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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_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_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%snowprv 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)%Tbd%snowprv in module GFS_typedefs -DEBUG: Requested variable lwe_thickness_of_snow_amount_on_dynamics_timestep in MODULE_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_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 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 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_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 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 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_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_pre SCHEME_m_micro_pre SUBROUTINE_m_micro_pre_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_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_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_pre SCHEME_m_micro_pre SUBROUTINE_m_micro_pre_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 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_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_subgrid_orography in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_pre_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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 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_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_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 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 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_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_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_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 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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Control%pgcon_shal 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_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_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_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_init 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_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_h2ophys SCHEME_h2ophys SUBROUTINE_h2ophys_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_gwdps SCHEME_gwdps SUBROUTINE_gwdps_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Control%me 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_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_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_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_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_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_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_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 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 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_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 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 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 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_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_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_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_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_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 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 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_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_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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%itc 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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_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_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_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_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_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_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_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_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_statistical_measures_of_subgrid_orography in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_pre_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_total_tracers in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_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_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 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_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_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_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_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_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_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_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_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_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_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_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_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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_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_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_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_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_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_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_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_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_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_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_post SCHEME_GFS_rrtmg_post SUBROUTINE_GFS_rrtmg_post_run 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_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_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_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_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_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_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_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 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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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 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_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 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 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_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_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 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 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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run 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 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_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_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_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_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_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_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_concentration 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%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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_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 slope_of_subgrid_orography in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_pre_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 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_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_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_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_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_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_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 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_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_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_temperature in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%stc 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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_vertical_dimension in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Control%lsoil 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_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_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target con_cp 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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target con_cliq 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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run 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_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_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_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_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_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_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 standard_deviation_of_subgrid_orography in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_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_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 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 statistical_measures_of_subgrid_orography in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_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_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 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_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 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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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 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_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_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 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_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_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 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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_dcyc2t3_post SCHEME_dcyc2t3_post SUBROUTINE_dcyc2t3_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_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_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_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_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_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_dcyc2t3_post SCHEME_dcyc2t3_post SUBROUTINE_dcyc2t3_post_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_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 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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_upward_latent_heat_flux_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%dqsfcin_cpl in module GFS_typedefs -DEBUG: Requested variable surface_upward_latent_heat_flux_for_coupling_interstitial 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)%dqsfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_upward_latent_heat_flux_for_coupling_interstitial 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)%dqsfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_upward_latent_heat_flux_for_coupling_interstitial in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Interstitial(cdata%thrd_no)%dqsfc_cice 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_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_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_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_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_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_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_sensible_heat_flux_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%dtsfcin_cpl in module GFS_typedefs -DEBUG: Requested variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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)%dtsfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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)%dtsfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_upward_sensible_heat_flux_for_coupling_interstitial in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Interstitial(cdata%thrd_no)%dtsfc_cice 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 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_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_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 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_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_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 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_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_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 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_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_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%ulwsfcin_cpl in module GFS_typedefs -DEBUG: Requested variable surface_upwelling_longwave_flux_for_coupling_interstitial 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)%ulwsfc_cice 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_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_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_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_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_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_shortwave_flux in MODULE_dcyc2t3_post SCHEME_dcyc2t3_post SUBROUTINE_dcyc2t3_post_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_x_momentum_flux_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%dusfcin_cpl in module GFS_typedefs -DEBUG: Requested variable surface_x_momentum_flux_for_coupling_interstitial 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)%dusfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_x_momentum_flux_for_coupling_interstitial 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)%dusfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_x_momentum_flux_for_coupling_interstitial in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Interstitial(cdata%thrd_no)%dusfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_y_momentum_flux_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%dvsfcin_cpl in module GFS_typedefs -DEBUG: Requested variable surface_y_momentum_flux_for_coupling_interstitial 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)%dvsfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_y_momentum_flux_for_coupling_interstitial 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)%dvsfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_y_momentum_flux_for_coupling_interstitial in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Interstitial(cdata%thrd_no)%dvsfc_cice 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_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_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_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_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_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 tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_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)%Coupling%tconvtend in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Data(cdata%blk_no)%Tbd%htlw0 in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step in MODULE_rrtmg_lw_post SCHEME_rrtmg_lw_post SUBROUTINE_rrtmg_lw_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%htlw0 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)%Tbd%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)%Tbd%htlwc 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)%Tbd%htlwc in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Data(cdata%blk_no)%Tbd%htlwc in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step in MODULE_rrtmg_lw_post SCHEME_rrtmg_lw_post SUBROUTINE_rrtmg_lw_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%htlwc 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)%Tbd%htlwc 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)%Tbd%htlwc 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)%Tbd%htlwc in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_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)%Radtend%htrlw in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep 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_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)%Radtend%htrlw in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep 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_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_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_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_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_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_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_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_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_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_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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_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_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_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_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_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_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_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_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_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Data(cdata%blk_no)%Tbd%htsw0 in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step in MODULE_rrtmg_sw_post SCHEME_rrtmg_sw_post SUBROUTINE_rrtmg_sw_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%htsw0 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)%Tbd%htsw0 in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Data(cdata%blk_no)%Tbd%htswc 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)%Tbd%htswc in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step in MODULE_rrtmg_sw_post SCHEME_rrtmg_sw_post SUBROUTINE_rrtmg_sw_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%htswc 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)%Tbd%htswc 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)%Tbd%htswc 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)%Tbd%htswc in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_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)%Radtend%htrsw in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep 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_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)%Radtend%htrsw in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep 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_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_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_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_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_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_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_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_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_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_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_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_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdftra in module GFS_typedefs -DEBUG: Requested variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_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)%Coupling%qconvtend in module GFS_typedefs -DEBUG: Requested variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_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)%Coupling%uconvtend 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_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_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_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_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_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_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_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_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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 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_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_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_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_deep_convection_for_coupling_on_physics_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)%Coupling%vconvtend 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_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_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_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_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_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_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_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_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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 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_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_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_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_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_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_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 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_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_x_stress_due_to_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%dugwd in module GFS_typedefs -DEBUG: Requested variable time_integral_of_x_stress_due_to_gravity_wave_drag in MODULE_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_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_integral_of_y_stress_due_to_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%dvgwd in module GFS_typedefs -DEBUG: Requested variable time_integral_of_y_stress_due_to_gravity_wave_drag in MODULE_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_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_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_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_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_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_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_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_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_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_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_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_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_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_post_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_post_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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 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_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_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_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_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_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 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 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_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_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_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 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_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_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_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 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_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 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_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 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_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 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_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 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 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_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 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 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_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_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_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_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_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_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_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 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 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_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_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_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 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_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_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_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_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_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_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 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_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_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 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_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_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_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_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_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_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_ozphys SCHEME_ozphys SUBROUTINE_ozphys_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_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_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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Control%levs in module GFS_typedefs -DEBUG: Requested variable vertical_dimension in MODULE_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_post_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_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_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_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_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_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_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_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_gwdps SCHEME_gwdps SUBROUTINE_gwdps_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_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_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_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_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_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 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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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_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_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_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_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_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_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_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 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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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 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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_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_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_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_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_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_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_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%xmu in module GFS_typedefs -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 162 schemes to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_SCHEMES.mk, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 5 auto-generated caps to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_CAPS.mk and /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ ./build_ccpp.sh cheyenne.gnu /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk 'CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp' NO NO -MACHINE_ID=cheyenne.gnu is valid. -Compilers set for cheyenne.gnu. -Obtained ESMF_LIB=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib from /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -DNETCDF_DIR=/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/ -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DOPENMP=ON -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is GNU 8.3.0 --- The CXX compiler identification is GNU 8.3.0 --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -- 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: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicxx --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicxx -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- The Fortran compiler identification is GNU 8.3.0 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 supports Fortran 90 --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 supports Fortran 90 -- yes --- Dynamics compiled with 32-bit option, adjust fv_sat_adj types --- Detecting OpenMP flags for GNU C compiler: -fopenmp --- Detecting OpenMP flags for GNU C++ compiler: -fopenmp --- Detecting OpenMP flags for GNU Fortran compiler: -fopenmp --- 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 GNU C compiler: -fopenmp --- Detecting OpenMP flags for GNU C++ compiler: -fopenmp --- Detecting OpenMP flags for GNU Fortran compiler: -fopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.4") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.6") --- Detecting OpenMP flags for GNU C compiler: -fopenmp --- Detecting OpenMP flags for GNU C++ compiler: -fopenmp --- Detecting OpenMP flags for GNU Fortran compiler: -fopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot SCHEMES from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DDEBUG -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DDEBUG -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DDEBUG -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DDEBUG -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DDEBUG -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DDEBUG -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DDEBUG -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DDEBUG -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DDEBUG -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DDEBUG -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DDEBUG -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp GNU -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O0 -g -fPIC -fopenmp -fopenmp -O0 -g -fPIC -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_dl.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O0 -g -fPIC -fopenmp -fopenmp -O0 -g -fPIC -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_fields_idx.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O0 -g -fPIC -fopenmp -fopenmp -O0 -g -fPIC -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_utils.c -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O0 -g -fPIC -fopenmp -fopenmp -O0 -g -fPIC -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/ccpp_xml.c -[ 8%] Linking Fortran static library libccpp.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar qc libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 9%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O0 -g -fPIC -fopenmp -fopenmp -O0 -g -fPIC -o CMakeFiles/test_fields.dir/test_fields.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests/test_fields.c -[ 9%] Linking C executable test_fields -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpicc -O0 -g -fPIC -fopenmp -fopenmp -O0 -g -fPIC CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lgfortran -lgfortran -lquadmath -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DDEBUG -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -[ 10%] Linking Fortran executable test_check -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DDEBUG -O0 -g -fPIC CMakeFiles/test_check.dir/test_check.f90.o -o test_check ../libccpp.a /usr/lib64/libxml2.so -ldl -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 11%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DDEBUG -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -[ 12%] Linking Fortran executable test_init_finalize -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -fopenmp -DDEBUG -O0 -g -fPIC CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize ../libccpp.a /usr/lib64/libxml2.so -ldl -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fno-range-check -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -ffree-line-length-none -fdefault-real-8 -ffree-form -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -ffree-form -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_physics_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_radiation_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stochastics_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_time_vary_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -fcheck=no-pointer,no-bounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_cap.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o.provides.build -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp GNU -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1997:72: - - & del(i,:), Sw, Sw1) + subroutine MPP_GLOBAL_FIELD_2D_AD_( domain, local, global, flags, position,tile_count, default_data) + +Warning: ‘mpp_global_field2d_l4_2d_ad’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ad.h:63:0: + + subroutine MPP_GLOBAL_FIELD_4D_AD_( domain, local, global, flags, position,tile_count, default_data ) + +Warning: ‘mpp_global_field2d_l4_4d_ad’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_global_field_ad.h:81:0: + + subroutine MPP_GLOBAL_FIELD_5D_AD_( domain, local, global, flags, position,tile_count, default_data ) + +Warning: ‘mpp_global_field2d_l4_5d_ad’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_astronomy.f:998:13: + + ltd = dltd + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_astronomy.f:1000:13: + + ltm = dltm + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_astronomy.f:1010:13: + + ihalp= halp + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_astronomy.f:1012:13: + + iyy = ymin + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_astronomy.f:726:13: + + jdoe = ador + (svt6 * cyear) / (year - tyear) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_astronomy.f:875:37: + + integer :: istsun(IM), i, it, j, lat + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_astronomy.f:875:42: + + integer :: istsun(IM), i, it, j, lat + 1 +Warning: Unused variable ‘lat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_astronomy.f:827:45: + + & ( xlon,sinlat,coslat,solhr, IM, me, & ! --- inputs + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_astronomy.f:333:24: + + & ( jdate,kyear,deltsw,deltim,lsol_chg, me, & ! --- inputs + 1 +Warning: Unused dummy argument ‘kyear’ at (1) [-Wunused-dummy-argument] +[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_surface.f:734:35: + + & asnow, argh, hrgh, fsno, fsno0, fsno1 + 1 +Warning: Unused variable ‘fsno’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_surface.f:675:59: + + & ( xlon,xlat,slmsk,snowf,sncovr,zorlf,tsknf,tairf,hprif, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘tairf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_surface.f:408:21: + + integer :: i, k, kk, iflag + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_surface.f:320:62: + + & ( slmsk,snowf,sncovr,snoalb,zorlf,coszf,tsknf,tairf,hprif, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘tairf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_surface.f:182:21: + + integer :: i, k + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_surface.f:182:24: + + integer :: i, k + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfaerosols.F:442:62: + + real(kind=kind_phys) :: aup, dtime_max, dv1q, dv2q, dv3q, + 1 +Warning: Unused variable ‘dv3q’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfaerosols.F:440:24: + + integer :: i, indx, it, k, kk, km1, kp1, n + 1 +Warning: Unused variable ‘indx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfaerosols.F:410:31: + + & cnvflg, kb, kmax, kbcon, ktcon, fscav, + 1 +Warning: Unused dummy argument ‘kbcon’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfaerosols.F:443:32: + + & dtovdz, dz, factor, ptem, ptem1, qamax, tem, tem1 + 1 +Warning: Unused variable ‘ptem’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfaerosols.F:443:39: + + & dtovdz, dz, factor, ptem, ptem1, qamax, tem, tem1 + 1 +Warning: Unused variable ‘ptem1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfaerosols.F:443:46: + + & dtovdz, dz, factor, ptem, ptem1, qamax, tem, tem1 + 1 +Warning: Unused variable ‘qamax’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfaerosols.F:41:24: + + integer :: i, indx, it, k, kk, km1, kp1, n + 1 +Warning: Unused variable ‘indx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfaerosols.F:43:46: + + & dtovdz, dz, factor, ptem, ptem1, qamax, tem, tem1 + 1 +Warning: Unused variable ‘qamax’ declared at (1) [-Wunused-variable] +[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aerinterp.F90:284:14: + + rinc4=rinc + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aerinterp.F90:259:59: + + integer i1,i2, iday,j,j1,j2,l,npts,nc,n1,n2,lev,k,i,ii + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aerinterp.F90:259:27: + + integer i1,i2, iday,j,j1,j2,l,npts,nc,n1,n2,lev,k,i,ii + 1 +Warning: Unused variable ‘iday’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aerinterp.F90:253:38: + + SUBROUTINE aerinterpol(me,master,npts,IDATE,FHOUR,jindx1,jindx2, & + 1 +Warning: Unused dummy argument ‘master’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aerinterp.F90:253:31: + + SUBROUTINE aerinterpol(me,master,npts,IDATE,FHOUR,jindx1,jindx2, & + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aerinterp.F90:259:45: + + integer i1,i2, iday,j,j1,j2,l,npts,nc,n1,n2,lev,k,i,ii + 1 +Warning: Unused variable ‘nc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aerinterp.F90:267:51: + + real(kind=kind_phys) DDY(npts), ddx(npts),ttt + 1 +Warning: Unused variable ‘ttt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aerinterp.F90:186:44: + + iindx1,iindx2,ddx,me,master) + 1 +Warning: Unused dummy argument ‘master’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aerinterp.F90:186:37: + + iindx1,iindx2,ddx,me,master) + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aerinterp.F90:29:41: + + integer :: i, j, k, n, ii, ijk, imon, klev + 1 +Warning: Unused variable ‘ijk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aerinterp.F90:29:32: + + integer :: i, j, k, n, ii, ijk, imon, klev + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/h2ointerp.f90:161:16: + + rinc4 = rinc + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/h2ointerp.f90:130:31: + + subroutine h2ointerpol(me,npts,idate,fhour,jindx1,jindx2,h2oplout,ddy) + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/h2ointerp.f90:94:10: + + use h2o_def, only: jh2o => latsh2o, h2o_lat, h2o_time + 1 +Warning: Unused module variable ‘h2o_time’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/h2ointerp.f90:102:21: + + integer i,j,lat + 1 +Warning: Unused variable ‘lat’ declared at (1) [-Wunused-variable] +[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iccninterp.F90:160:14: + + rinc4=rinc + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iccninterp.F90:134:59: + + integer i1,i2, iday,j,j1,j2,l,npts,nc,n1,n2,lev,k,i + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iccninterp.F90:134:27: + + integer i1,i2, iday,j,j1,j2,l,npts,nc,n1,n2,lev,k,i + 1 +Warning: Unused variable ‘iday’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iccninterp.F90:128:30: + + SUBROUTINE ciinterpol(me,npts,IDATE,FHOUR,jindx1,jindx2,ddy, & + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iccninterp.F90:134:45: + + integer i1,i2, iday,j,j1,j2,l,npts,nc,n1,n2,lev,k,i + 1 +Warning: Unused variable ‘nc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iccninterp.F90:142:51: + + real(kind=kind_phys) DDY(npts), ddx(npts),ttt + 1 +Warning: Unused variable ‘ttt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iccninterp.F90:26:18: + + integer :: i, n, k, ncid, varid,j,it + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iccninterp.F90:26:39: + + integer :: i, n, k, ncid, varid,j,it + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/iccninterp.F90:26:21: + + integer :: i, n, k, ncid, varid,j,it + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozinterp.f90:164:14: + + rinc4=rinc + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozinterp.f90:141:30: + + integer iday,j,j1,j2,l,npts,nc,n1,n2 + 1 +Warning: Unused variable ‘iday’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozinterp.f90:136:30: + + SUBROUTINE ozinterpol(me,npts,IDATE,FHOUR,jindx1,jindx2,ozplout,ddy) + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozinterp.f90:108:21: + + integer i,j,lat + 1 +Warning: Unused variable ‘lat’ declared at (1) [-Wunused-variable] +[ 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_sh.F90:69:61: + + itf,ktf,its,ite, kts,kte,ipr,tropics) ! dimesnional variables + 1 +Warning: Unused dummy argument ‘tropics’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:1873:7: + + REAL*8 FUNCTION erf(x) + 1 +Warning: ‘erf’ declared at (1) may shadow the intrinsic of the same name. In order to call the intrinsic, explicit INTRINSIC declarations may be required. [-Wintrinsic-shadow] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:1555:2: + + 20 do 30 i=1,maxit_par + 1 +Warning: Label 20 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:625:4: + + 2033 return + 1 +Warning: Label 2033 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:3993:19: + + dH1smooth = a_1 + 2.0*a_2*X + 3.0*a_3*X*X + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:1840:9: + + m=(n+1)/2d0 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:3525:17: + + real :: EPS = 0.622 + 1 +Warning: Unused variable ‘eps’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:3514:28: + + & CIHENC_dust, ESW, ESI, SS_i, n_in_soot_ultra, H_frac_soot, + 1 +Warning: Unused variable ‘esi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:3514:23: + + & CIHENC_dust, ESW, ESI, SS_i, n_in_soot_ultra, H_frac_soot, + 1 +Warning: Unused variable ‘esw’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:3521:32: + + real :: mu, S_i_0, RH_crit, S_i_w_warm, S_i_w_cold, S_i_w, + 1 +Warning: Unused variable ‘rh_crit’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:3521:63: + + real :: mu, S_i_0, RH_crit, S_i_w_warm, S_i_w_cold, S_i_w, + 1 +Warning: Unused variable ‘s_i_w’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:3521:56: + + real :: mu, S_i_0, RH_crit, S_i_w_warm, S_i_w_cold, S_i_w, + 1 +Warning: Unused variable ‘s_i_w_cold’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:3521:44: + + real :: mu, S_i_0, RH_crit, S_i_w_warm, S_i_w_cold, S_i_w, + 1 +Warning: Unused variable ‘s_i_w_warm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:3378:59: + + real*8 :: Nd, Nd_unc, Nd_coa, Nbc, ahet, frac, dfrac, Naux,dNaux, + 1 +Warning: Unused variable ‘dfrac’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:3378:52: + + real*8 :: Nd, Nd_unc, Nd_coa, Nbc, ahet, frac, dfrac, Naux,dNaux, + 1 +Warning: Unused variable ‘frac’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:3382:63: + + real*8, dimension(3) :: sig_array, the_array, frac_array + 1 +Warning: Unused variable ‘frac_array’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:3384:31: + + integer :: index, kindex, nbindust_ice + 1 +Warning: Unused variable ‘kindex’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:3378:35: + + real*8 :: Nd, Nd_unc, Nd_coa, Nbc, ahet, frac, dfrac, Naux,dNaux, + 1 +Warning: Unused variable ‘nd_coa’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:3378:27: + + real*8 :: Nd, Nd_unc, Nd_coa, Nbc, ahet, frac, dfrac, Naux,dNaux, + 1 +Warning: Unused variable ‘nd_unc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:3382:40: + + real*8, dimension(3) :: sig_array, the_array, frac_array + 1 +Warning: Unused variable ‘sig_array’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:3382:51: + + real*8, dimension(3) :: sig_array, the_array, frac_array + 1 +Warning: Unused variable ‘the_array’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:3074:30: + + & dNdep, dNdhf, si, dfrac, Ncdep_, Ncdhf_ , fglassy, Nglassy, + 1 +Warning: Unused variable ‘dfrac’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:3074:12: + + & dNdep, dNdhf, si, dfrac, Ncdep_, Ncdhf_ , fglassy, Nglassy, + 1 +Warning: Unused variable ‘dndep’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:3074:19: + + & dNdep, dNdhf, si, dfrac, Ncdep_, Ncdhf_ , fglassy, Nglassy, + 1 +Warning: Unused variable ‘dndhf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:3073:59: + + & dNdaux, dNorg, Norg, Ndustaux, frac, aux2, Dx2, fdep, Ndep, Ndhf, + 1 +Warning: Unused variable ‘fdep’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:3083:31: + + integer :: index, kindex, mode,nbindust_ice + 1 +Warning: Unused variable ‘kindex’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:3083:37: + + integer :: index, kindex, mode,nbindust_ice + 1 +Warning: Unused variable ‘mode’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:3074:38: + + & dNdep, dNdhf, si, dfrac, Ncdep_, Ncdhf_ , fglassy, Nglassy, + 1 +Warning: Unused variable ‘ncdep_’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:3074:46: + + & dNdep, dNdhf, si, dfrac, Ncdep_, Ncdhf_ , fglassy, Nglassy, + 1 +Warning: Unused variable ‘ncdhf_’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:3073:65: + + & dNdaux, dNorg, Norg, Ndustaux, frac, aux2, Dx2, fdep, Ndep, Ndhf, + 1 +Warning: Unused variable ‘ndep’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:3073:71: + + & dNdaux, dNorg, Norg, Ndustaux, frac, aux2, Dx2, fdep, Ndep, Ndhf, + 1 +Warning: Unused variable ‘ndhf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:2989:23: + + real*8 :: A_, a0, a1, a2, a3, d, AUX + 1 +Warning: Unused variable ‘a0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:2799:54: + + & Tr, vw, den_m, Eact, Toact, Dact, acc, n1, Siw, rgo, + 1 +Warning: Unused variable ‘acc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:2787:29: + + & P_ice, T_ice,act_param,ndust_ice,vpresw_ice,vpresi_ice, + 1 +Warning: Unused dummy argument ‘act_param’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:2797:20: + + real*8 :: AUX, AUX1, AUX2, SW, fice, mice, Tc, hdust, hbc, b0, + 1 +Warning: Unused variable ‘aux’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:2799:49: + + & Tr, vw, den_m, Eact, Toact, Dact, acc, n1, Siw, rgo, + 1 +Warning: Unused variable ‘dact’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:2799:30: + + & Tr, vw, den_m, Eact, Toact, Dact, acc, n1, Siw, rgo, + 1 +Warning: Unused variable ‘den_m’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:2799:36: + + & Tr, vw, den_m, Eact, Toact, Dact, acc, n1, Siw, rgo, + 1 +Warning: Unused variable ‘eact’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:2800:30: + + & ngo, mw_molec,dhs_ice,denwat_ice,denice_ice,vpresw_ice, + 1 +Warning: Unused variable ‘mw_molec’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:2799:58: + + & Tr, vw, den_m, Eact, Toact, Dact, acc, n1, Siw, rgo, + 1 +Warning: Unused variable ‘n1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:2800:20: + + & ngo, mw_molec,dhs_ice,denwat_ice,denice_ice,vpresw_ice, + 1 +Warning: Unused variable ‘ngo’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:2799:68: + + & Tr, vw, den_m, Eact, Toact, Dact, acc, n1, Siw, rgo, + 1 +Warning: Unused variable ‘rgo’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:2799:63: + + & Tr, vw, den_m, Eact, Toact, Dact, acc, n1, Siw, rgo, + 1 +Warning: Unused variable ‘siw’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:2799:43: + + & Tr, vw, den_m, Eact, Toact, Dact, acc, n1, Siw, rgo, + 1 +Warning: Unused variable ‘toact’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:2799:19: + + & Tr, vw, den_m, Eact, Toact, Dact, acc, n1, Siw, rgo, + 1 +Warning: Unused variable ‘tr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:2799:23: + + & Tr, vw, den_m, Eact, Toact, Dact, acc, n1, Siw, rgo, + 1 +Warning: Unused variable ‘vw’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:2612:22: + + real*8 shom_ice,NHET_,np_ice,norg_ice,sigorg_ice, + 1 +Warning: Unused variable ‘shom_ice’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:2324:16: + + & DSTAR, DS, NSTAR, NHOM, FC, PHIDO, AUXNC, SIZECORR, DSH, NHET_, + 1 +Warning: Unused variable ‘ds’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:2302:70: + + & nin_ice,alfa_ice,beta_ice,shom_ice, koft_ice, dliq_ice,miuv_ice, + 1 +Warning: Unused dummy argument ‘miuv_ice’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:2303:17: + + & sigmav_ice,g1_ice, g2_ice,gdoin_ice, z_ice,vmax_ice, + 1 +Warning: Unused dummy argument ‘sigmav_ice’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:2303:58: + + & sigmav_ice,g1_ice, g2_ice,gdoin_ice, z_ice,vmax_ice, + 1 +Warning: Unused dummy argument ‘vmax_ice’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:2179:24: + + real*8 wpar_icex,denice_ice,ddry_ice,np_ice, + 1 +Warning: Unused variable ‘wpar_icex’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:1619:20: + + integer ::j,i,k,nmodes + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:1619:22: + + integer ::j,i,k,nmodes + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:1501:34: + + &y2,x3,y3, sign,smax, ent_par, ndroplet, nrdpl,bet1_par, + 1 +Warning: Unused variable ‘ent_par’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:1415:18: + + & tparc,pparc,temp_par, pres_par,aka_par, dv_par, psat_par, + 1 +Warning: Unused variable ‘pparc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:1415:12: + + & tparc,pparc,temp_par, pres_par,aka_par, dv_par, psat_par, + 1 +Warning: Unused variable ‘tparc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:1412:22: + + real*8 :: tpart, nact, nacti,wparc,smax,ntot, tx1 + 1 +Warning: Unused variable ‘tpart’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:1343:26: + + integer :: nmodes,i,j,k + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:1343:28: + + integer :: nmodes,i,j,k + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:1290:22: + + integer :: j, I,nmodes + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:1291:48: + + real*8 :: dlgsg, dlgsp, orism5, ndl, nds, super, ccn_at_s + 1 +Warning: Unused variable ‘nds’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:1218:11: + + & PACT, auxx, aux,temp_par, pres_par + 1 +Warning: Unused variable ‘pact’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:1208:52: + + & dpg_par,kappa_par,sig_par,temp_par, pres_par) + 1 +Warning: Unused dummy argument ‘pres_par’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:1207:39: + + subroutine arg_activ (wparc,sigw,nact,smax,nmodes,tp_par, & + 1 +Warning: Unused dummy argument ‘sigw’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:1040:52: + + real(r8) :: rho_gw, k_gw, h_gw, c2_gw, dummyW, maxkh, Wbreak + 1 +Warning: Unused variable ‘dummyw’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:1028:22: + + & fcn, KH, FRLAND, ZPBL, Z, maxkhpbl, wparc_ls, wparc_gw, + 1 +Warning: Unused dummy argument ‘frland’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:1040:59: + + real(r8) :: rho_gw, k_gw, h_gw, c2_gw, dummyW, maxkh, Wbreak + 1 +Warning: Unused variable ‘maxkh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:1028:31: + + & fcn, KH, FRLAND, ZPBL, Z, maxkhpbl, wparc_ls, wparc_gw, + 1 +Warning: Unused dummy argument ‘z’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:1028:28: + + & fcn, KH, FRLAND, ZPBL, Z, maxkhpbl, wparc_ls, wparc_gw, + 1 +Warning: Unused dummy argument ‘zpbl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:938:17: + + real:: aux, densSO4, densORG, k_SO4, k_ORG, k_SS, tot_mass, dens, + 1 +Warning: Unused variable ‘aux’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:938:55: + + real:: aux, densSO4, densORG, k_SO4, k_ORG, k_SS, tot_mass, dens, + 1 +Warning: Unused variable ‘k_ss’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:941:23: + + integer :: i,k,l,im,lm + 1 +Warning: Unused variable ‘l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:831:17: + + real:: aux, densSO4, densORG, k_SO4, k_ORG, k_SS, tot_mass, dens, + 1 +Warning: Unused variable ‘aux’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:831:55: + + real:: aux, densSO4, densORG, k_SO4, k_ORG, k_SS, tot_mass, dens, + 1 +Warning: Unused variable ‘k_ss’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:834:25: + + integer :: i,j,k,l + 1 +Warning: Unused variable ‘l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:218:48: + + real*8 :: nact, wparc, tparc,pparc, accom,sigw, smax, antot, & + 1 +Warning: Unused variable ‘accom’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:219:25: + + & ccn_at_s, sigwparc + 1 +Warning: Unused variable ‘ccn_at_s’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:186:56: + + & wparc_ls, Aer_Props, npre_in, dpre_in, ccn_diagr8, Ndropr8, & + 1 +Warning: Unused dummy argument ‘ccn_diagr8’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:225:32: + + & nhom, dorg, dbc, kappa, INimm, dINimm, aux + 1 +Warning: Unused variable ‘dbc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:225:27: + + & nhom, dorg, dbc, kappa, INimm, dINimm, aux + 1 +Warning: Unused variable ‘dorg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:215:25: + + integer :: k, n, I, J, naux + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:189:62: + + & fdust_dhfr8, nlimr8, use_average_v, CCN_param, IN_param, fd_dust,& + 1 +Warning: Unused dummy argument ‘in_param’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:215:28: + + integer :: k, n, I, J, naux + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:225:39: + + & nhom, dorg, dbc, kappa, INimm, dINimm, aux + 1 +Warning: Unused variable ‘kappa’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:224:68: + + real*8 :: nhet, nice, smaxice, nlim, air_den, frac, norg, nbc, & + 1 +Warning: Unused variable ‘nbc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:186:65: + + & wparc_ls, Aer_Props, npre_in, dpre_in, ccn_diagr8, Ndropr8, & + 1 +Warning: Unused dummy argument ‘ndropr8’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:225:21: + + & nhom, dorg, dbc, kappa, INimm, dINimm, aux + 1 +Warning: Unused variable ‘nhom’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:224:63: + + real*8 :: nhet, nice, smaxice, nlim, air_den, frac, norg, nbc, & + 1 +Warning: Unused variable ‘norg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:1287:0: + + subroutine ccn_at_super (super,ccn_at_s,nmodes, & + +Warning: ‘ccn_at_super’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/aer_cloud.F:1828:0: + + subroutine gauleg (x,w,n) + +Warning: ‘gauleg’ defined but not used [-Wunused-function] +[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90:1274:9: + + it = ap1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90:1277:9: + + it = ap1 - 0.5 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90:1241:13: + + it = ap1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90:1244:13: + + it = ap1 - 0.5 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90:1204:9: + + it = ap1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90:1207:9: + + it = ap1 - 0.5 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90:1175:9: + + it = ap1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90:1148:9: + + it = ap1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90:1289:22: + + subroutine qs_table (n) + 1 +Warning: Unused dummy argument ‘n’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90:229:67: + + qs, qg, hs, peln, delz, delp, pt, pkz, q_con, akap, cappa, area, dtdt, & + 1 +Warning: Unused dummy argument ‘akap’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90:231:25: + + nthreads, errmsg, errflg) + 1 +Warning: Unused dummy argument ‘nthreads’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90:228:71: + + ng, hydrostatic, fast_mp_consv, te0_2d, te0, ngas, qvi, qv, ql, qi, qr, & + 1 +Warning: Unused dummy argument ‘qvi’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90:121:71: + + subroutine fv_sat_adj_init(do_sat_adj, kmp, nwat, ngas, rilist, cpilist, & + 1 +Warning: Unused dummy argument ‘cpilist’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90:121:42: + + subroutine fv_sat_adj_init(do_sat_adj, kmp, nwat, ngas, rilist, cpilist, & + 1 +Warning: Unused dummy argument ‘kmp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90:122:34: + + mpirank, mpiroot, errmsg, errflg) + 1 +Warning: Unused dummy argument ‘mpirank’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90:122:43: + + mpirank, mpiroot, errmsg, errflg) + 1 +Warning: Unused dummy argument ‘mpiroot’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90:121:48: + + subroutine fv_sat_adj_init(do_sat_adj, kmp, nwat, ngas, rilist, cpilist, & + 1 +Warning: Unused dummy argument ‘nwat’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90:121:62: + + subroutine fv_sat_adj_init(do_sat_adj, kmp, nwat, ngas, rilist, cpilist, & + 1 +Warning: Unused dummy argument ‘rilist’ at (1) [-Wunused-dummy-argument] +[ 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/gfdl_cloud_microphys.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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_generic.F90:35:79: + + dtsfc_cice, dqsfc_cice, tisfc, tsfco, fice, hice, dry, icy, wet, & + 1 +Warning: Unused dummy argument ‘dry’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_generic.F90:35:68: + + dtsfc_cice, dqsfc_cice, tisfc, tsfco, fice, hice, dry, icy, wet, & + 1 +Warning: Unused dummy argument ‘fice’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_generic.F90:35:74: + + dtsfc_cice, dqsfc_cice, tisfc, tsfco, fice, hice, dry, icy, wet, & + 1 +Warning: Unused dummy argument ‘hice’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_generic.F90:35:84: + + dtsfc_cice, dqsfc_cice, tisfc, tsfco, fice, hice, dry, icy, wet, & + 1 +Warning: Unused dummy argument ‘icy’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_generic.F90:35:55: + + dtsfc_cice, dqsfc_cice, tisfc, tsfco, fice, hice, dry, icy, wet, & + 1 +Warning: Unused dummy argument ‘tisfc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_generic.F90:29:48: + + prsik_1, prslk_1, tsfc, phil, con_g, & + 1 +Warning: Unused dummy argument ‘tsfc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_generic.F90:35:62: + + dtsfc_cice, dqsfc_cice, tisfc, tsfco, fice, hice, dry, icy, wet, & + 1 +Warning: Unused dummy argument ‘tsfco’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_generic.F90:30:74: + + sigmaf, soiltyp, vegtype, slopetyp, work3, tsurf, zlvl, do_sppt, dtdtr, & + 1 +Warning: Unused dummy argument ‘tsurf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_generic.F90:35:89: + + dtsfc_cice, dqsfc_cice, tisfc, tsfco, fice, hice, dry, icy, wet, & + 1 +Warning: Unused dummy argument ‘wet’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_generic.F90:235:77: + + subroutine GFS_surface_generic_post_run (im, cplflx, cplwav, lssav, icy, wet, dtf, ep1d, gflx, tgrs_1, qgrs_1, ugrs_1, vgrs_1,& + 1 +Warning: Unused dummy argument ‘icy’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_surface_generic.F90:237:55: + + adjvisbmu, adjvisdfu,t2m, q2m, u10m, v10m, tsfc, tsfc_ocn, pgr, xcosz, evbs, evcw, trans, sbsno, snowc, snohf, & + 1 +Warning: Unused dummy argument ‘tsfc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/wv_saturation.F:215:4: + + 9000 format('GESTBL: FATAL ERROR ********************************* & + 1 +Warning: Label 9000 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/wv_saturation.F:166:19: + + itype = -ttrice + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/wv_saturation.F:1504:37: + + real(r8) omeps, hltalt, hlatsb, hlatvp, desdt, gam + 1 +Warning: Unused variable ‘hlatsb’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/wv_saturation.F:1504:45: + + real(r8) omeps, hltalt, hlatsb, hlatvp, desdt, gam + 1 +Warning: Unused variable ‘hlatvp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/wv_saturation.F:696:19: + + real(r8) dum + 1 +Warning: Unused variable ‘dum’ declared at (1) [-Wunused-variable] +[ 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_water_prop.f90:513:54: + + integer :: nn + 1 +Warning: Unused variable ‘nn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_water_prop.f90:288:46: + + real(kind=kind_phys),dimension(9) :: f_sum + 1 +Warning: Unused variable ‘f_sum’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_water_prop.f90:287:47: + + real(kind=kind_phys),dimension(9) :: zgamma + 1 +Warning: Unused variable ‘zgamma’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_water_prop.f90:246:31: + + real(kind=kind_phys) :: fxp + 1 +Warning: Unused variable ‘fxp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_water_prop.f90:307:0: + + elemental subroutine sw_fairall_simple_v1(f_sol_0,z,df_sol_z) + +Warning: ‘sw_fairall_simple_v1’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_water_prop.f90:338:0: + + elemental subroutine sw_wick_v1(f_sol_0,z,df_sol_z) + +Warning: ‘sw_wick_v1’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_water_prop.f90:370:0: + + elemental subroutine sw_soloviev_3exp_v1(f_sol_0,z,df_sol_z) + +Warning: ‘sw_soloviev_3exp_v1’ defined but not used [-Wunused-function] +[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90:4849:47: + + subroutine cldprop_create (Cldprop, IM, Model) + 1 +Warning: Unused dummy argument ‘model’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90:2874:45: + + integer :: bl_mynn_tkebudget = 0 + 1 +Warning: Unused variable ‘bl_mynn_tkebudget’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90:2828:35: + + logical :: do_awdd = .false. !< AW scale-aware option in cs convection + 1 +Warning: Unused variable ‘do_awdd’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90:2752:37: + + logical :: do_cldliq = .true. + 1 +Warning: Unused variable ‘do_cldliq’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90:2820:34: + + logical :: do_gwd = .false. !< flag for running gravity wave drag + 1 +Warning: Unused variable ‘do_gwd’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90:2656:21: + + logical :: exists + 1 +Warning: Unused variable ‘exists’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90:2829:36: + + logical :: flx_form = .false. !< AW scale-aware option in cs convection + 1 +Warning: Unused variable ‘flx_form’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90:2715:40: + + logical :: norad_precip = .false. !< radiation precip flag for Ferrier/Moorthi + 1 +Warning: Unused variable ‘norad_precip’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90:3018:25: + + integer :: skeb_npass = 11 + 1 +Warning: Unused variable ‘skeb_npass’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:589:4: + + 356 continue + 1 +Warning: Label 356 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:294:29: + + pa_rf, tau_rf, cdmbgwd, xlat, xlatd, sinlat, coslat, & + 1 +Warning: Unused dummy argument ‘cdmbgwd’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:310:9: + + use ugwp_okw_init, only : & + 1 +Warning: Unused module variable ‘ch_okwp’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:300:61: + + dcheat, precip, cld_klevs, zmtb, scheat, dlength, cldf, & + 1 +Warning: Unused dummy argument ‘cldf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:300:55: + + dcheat, precip, cld_klevs, zmtb, scheat, dlength, cldf, & + 1 +Warning: Unused dummy argument ‘dlength’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:312:9: + + use ugwp_conv_init, only : & + 1 +Warning: Unused module variable ‘eff_con’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:314:9: + + use ugwp_fjet_init, only : & + 1 +Warning: Unused module variable ‘eff_fj’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:310:9: + + use ugwp_okw_init, only : & + 1 +Warning: Unused module variable ‘eff_okw’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:299:22: + + eps_tot, ekdis, trig_okw, trig_fgf, & + 1 +Warning: Unused dummy argument ‘ekdis’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:370:19: + + integer :: i, j, k, istype, ido + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:296:26: + + delp, orostat, kpbl, & + 1 +Warning: Unused dummy argument ‘kpbl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:293:45: + + (im, levs, dtp, kdt, me, lprnt, lonr, & + 1 +Warning: Unused dummy argument ‘lonr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:310:9: + + use ugwp_okw_init, only : & + 1 +Warning: Unused module variable ‘nazokw’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:312:9: + + use ugwp_conv_init, only : & + 1 +Warning: Unused module variable ‘nstcon’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:314:9: + + use ugwp_fjet_init, only : & + 1 +Warning: Unused module variable ‘nstfj’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:310:9: + + use ugwp_okw_init, only : & + 1 +Warning: Unused module variable ‘nstokw’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:294:12: + + pa_rf, tau_rf, cdmbgwd, xlat, xlatd, sinlat, coslat, & + 1 +Warning: Unused dummy argument ‘pa_rf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:310:9: + + use ugwp_okw_init, only : & + 1 +Warning: Unused module variable ‘spf_okwp’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:294:20: + + pa_rf, tau_rf, cdmbgwd, xlat, xlatd, sinlat, coslat, & + 1 +Warning: Unused dummy argument ‘tau_rf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:301:45: + + taus_sso, taus_ogw, tauf_ogw, tauf_ngw, & + 1 +Warning: Unused dummy argument ‘tauf_ngw’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:310:9: + + use ugwp_okw_init, only : & + 1 +Warning: Unused module variable ‘xaz_okwp’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:294:36: + + pa_rf, tau_rf, cdmbgwd, xlat, xlatd, sinlat, coslat, & + 1 +Warning: Unused dummy argument ‘xlat’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:310:9: + + use ugwp_okw_init, only : & + 1 +Warning: Unused module variable ‘yaz_okwp’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:137:21: + + logical :: exists + 1 +Warning: Unused variable ‘exists’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:110:20: + + fn_nml, lonr, latr, levs, ak, bk, pref, dtp, cdmvgwd, cgwf, & + 1 +Warning: Unused dummy argument ‘fn_nml’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:136:18: + + integer :: ios + 1 +Warning: Unused variable ‘ios’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:110:32: + + fn_nml, lonr, latr, levs, ak, bk, pref, dtp, cdmvgwd, cgwf, & + 1 +Warning: Unused dummy argument ‘latr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_module.F90:109:53: + + subroutine cires_ugwp_mod_init (me, master, nlunit, input_nml_file, logunit, & + 1 +Warning: Unused dummy argument ‘nlunit’ at (1) [-Wunused-dummy-argument] +[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bfmicrophysics.f:2044:27: + + item = CN0r0*sqrt(sqrt(RQR)) ! Moorthi 07/31/08 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bfmicrophysics.f:2976:31: + + & rho, cpath, rc, totcnd, tc + 1 +Warning: Unused variable ‘rc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bfmicrophysics.f:2628:59: + + &, recwat, rerain, resnow, lprnt, ipr) + 1 +Warning: Unused dummy argument ‘ipr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bfmicrophysics.f:2628:54: + + &, recwat, rerain, resnow, lprnt, ipr) + 1 +Warning: Unused dummy argument ‘lprnt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bfmicrophysics.f:2644:20: + + &, snofac, tem + 1 +Warning: Unused variable ‘snofac’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bfmicrophysics.f:2644:25: + + &, snofac, tem + 1 +Warning: Unused variable ‘tem’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bfmicrophysics.f:1300:26: + + &, tfactor, denom, gammas, diffus, therm_cond & + 1 +Warning: Unused variable ‘denom’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bfmicrophysics.f:1294:42: + + &, dum2, fws, denomi, dwv & + 1 +Warning: Unused variable ‘dwv’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bfmicrophysics.f:1289:15: + + &, i, j, k, l, ntimes, item + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bfmicrophysics.f:1289:18: + + &, i, j, k, l, ntimes, item + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bfmicrophysics.f:1289:21: + + &, i, j, k, l, ntimes, item + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bfmicrophysics.f:1125:69: + + & THICK_col, WC_col, LM, RHC_col, XNCW, FLGmin, PRINT_diag, psfc) + 1 +Warning: Unused dummy argument ‘psfc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_bfmicrophysics.f:979:22: + + real mdiam, mass + 1 +Warning: Unused variable ‘mass’ declared at (1) [-Wunused-variable] +[ 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4788:48: + + real (kind=kind_io4), parameter :: PINT = 0.01 + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4830:17: + + & 0.992555, 0.9642, 0.90556, 0.816375, 0.703815, 0.576585, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4830:25: + + & 0.992555, 0.9642, 0.90556, 0.816375, 0.703815, 0.576585, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4830:34: + + & 0.992555, 0.9642, 0.90556, 0.816375, 0.703815, 0.576585, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4830:44: + + & 0.992555, 0.9642, 0.90556, 0.816375, 0.703815, 0.576585, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4830:54: + + & 0.992555, 0.9642, 0.90556, 0.816375, 0.703815, 0.576585, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4830:64: + + & 0.992555, 0.9642, 0.90556, 0.816375, 0.703815, 0.576585, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4831:16: + + & 0.44445, 0.324385, 0.226815, 0.149165, 0.089375, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4831:26: + + & 0.44445, 0.324385, 0.226815, 0.149165, 0.089375, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4831:36: + + & 0.44445, 0.324385, 0.226815, 0.149165, 0.089375, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4831:46: + + & 0.44445, 0.324385, 0.226815, 0.149165, 0.089375, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4831:56: + + & 0.44445, 0.324385, 0.226815, 0.149165, 0.089375, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4832:17: + + & 0.045865, 0.017485, 0.00348, 0, 0, 0, 0, 0, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4832:27: + + & 0.045865, 0.017485, 0.00348, 0, 0, 0, 0, 0, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4832:36: + + & 0.045865, 0.017485, 0.00348, 0, 0, 0, 0, 0, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4822:21: + + & 0, 0.0062694, 0.02377049, 0.05011813, 0.08278809, 0.1186361, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4822:33: + + & 0, 0.0062694, 0.02377049, 0.05011813, 0.08278809, 0.1186361, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4822:45: + + & 0, 0.0062694, 0.02377049, 0.05011813, 0.08278809, 0.1186361, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4822:57: + + & 0, 0.0062694, 0.02377049, 0.05011813, 0.08278809, 0.1186361, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4822:68: + + & 0, 0.0062694, 0.02377049, 0.05011813, 0.08278809, 0.1186361, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4823:18: + + & 0.1540329, 0.1836373, 0.2043698, 0.2167788, 0.221193, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4823:29: + + & 0.1540329, 0.1836373, 0.2043698, 0.2167788, 0.221193, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4823:40: + + & 0.1540329, 0.1836373, 0.2043698, 0.2167788, 0.221193, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4823:51: + + & 0.1540329, 0.1836373, 0.2043698, 0.2167788, 0.221193, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4823:61: + + & 0.1540329, 0.1836373, 0.2043698, 0.2167788, 0.221193, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4824:17: + + & 0.217729, 0.2062951, 0.1865887, 0.1615213, 0.1372958, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4824:28: + + & 0.217729, 0.2062951, 0.1865887, 0.1615213, 0.1372958, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4824:39: + + & 0.217729, 0.2062951, 0.1865887, 0.1615213, 0.1372958, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4824:50: + + & 0.217729, 0.2062951, 0.1865887, 0.1615213, 0.1372958, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4824:61: + + & 0.217729, 0.2062951, 0.1865887, 0.1615213, 0.1372958, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4825:18: + + & 0.1167039, 0.09920014, 0.08432171, 0.06656809, 0.04765031, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4825:30: + + & 0.1167039, 0.09920014, 0.08432171, 0.06656809, 0.04765031, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4825:42: + + & 0.1167039, 0.09920014, 0.08432171, 0.06656809, 0.04765031, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4825:54: + + & 0.1167039, 0.09920014, 0.08432171, 0.06656809, 0.04765031, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4825:66: + + & 0.1167039, 0.09920014, 0.08432171, 0.06656809, 0.04765031, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4826:19: + + & 0.03382346, 0.0237648, 0.01435208, 0.00659734, 0.002826232, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4826:30: + + & 0.03382346, 0.0237648, 0.01435208, 0.00659734, 0.002826232, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4826:42: + + & 0.03382346, 0.0237648, 0.01435208, 0.00659734, 0.002826232, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4826:54: + + & 0.03382346, 0.0237648, 0.01435208, 0.00659734, 0.002826232, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4826:67: + + & 0.03382346, 0.0237648, 0.01435208, 0.00659734, 0.002826232, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4827:20: + + & 0.001118959, 0.0004086494, 0.0001368611, 3.750308e-05/ + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4827:34: + + & 0.001118959, 0.0004086494, 0.0001368611, 3.750308e-05/ + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4827:48: + + & 0.001118959, 0.0004086494, 0.0001368611, 3.750308e-05/ + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4827:62: + + & 0.001118959, 0.0004086494, 0.0001368611, 3.750308e-05/ + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4812:22: + + & 9.98547E-01,9.94147E-01,9.86350E-01,9.74300E-01,9.56950E-01, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4812:34: + + & 9.98547E-01,9.94147E-01,9.86350E-01,9.74300E-01,9.56950E-01, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4812:46: + + & 9.98547E-01,9.94147E-01,9.86350E-01,9.74300E-01,9.56950E-01, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4812:58: + + & 9.98547E-01,9.94147E-01,9.86350E-01,9.74300E-01,9.56950E-01, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4812:70: + + & 9.98547E-01,9.94147E-01,9.86350E-01,9.74300E-01,9.56950E-01, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4813:22: + + & 9.33150E-01,9.01750E-01,8.61500E-01,8.11000E-01,7.50600E-01, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4813:34: + + & 9.33150E-01,9.01750E-01,8.61500E-01,8.11000E-01,7.50600E-01, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4813:46: + + & 9.33150E-01,9.01750E-01,8.61500E-01,8.11000E-01,7.50600E-01, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4813:58: + + & 9.33150E-01,9.01750E-01,8.61500E-01,8.11000E-01,7.50600E-01, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4813:70: + + & 9.33150E-01,9.01750E-01,8.61500E-01,8.11000E-01,7.50600E-01, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4814:22: + + & 6.82900E-01,6.10850E-01,5.37050E-01,4.63900E-01,3.93650E-01, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4814:34: + + & 6.82900E-01,6.10850E-01,5.37050E-01,4.63900E-01,3.93650E-01, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4814:46: + + & 6.82900E-01,6.10850E-01,5.37050E-01,4.63900E-01,3.93650E-01, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4814:58: + + & 6.82900E-01,6.10850E-01,5.37050E-01,4.63900E-01,3.93650E-01, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4814:70: + + & 6.82900E-01,6.10850E-01,5.37050E-01,4.63900E-01,3.93650E-01, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4815:22: + + & 3.28275E-01,2.69500E-01,2.18295E-01,1.74820E-01,1.38840E-01, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4815:34: + + & 3.28275E-01,2.69500E-01,2.18295E-01,1.74820E-01,1.38840E-01, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4815:46: + + & 3.28275E-01,2.69500E-01,2.18295E-01,1.74820E-01,1.38840E-01, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4815:58: + + & 3.28275E-01,2.69500E-01,2.18295E-01,1.74820E-01,1.38840E-01, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4815:70: + + & 3.28275E-01,2.69500E-01,2.18295E-01,1.74820E-01,1.38840E-01, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4816:22: + + & 1.09790E-01,8.66900E-02,6.84150E-02,5.39800E-02,4.25750E-02, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4816:34: + + & 1.09790E-01,8.66900E-02,6.84150E-02,5.39800E-02,4.25750E-02, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4816:46: + + & 1.09790E-01,8.66900E-02,6.84150E-02,5.39800E-02,4.25750E-02, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4816:58: + + & 1.09790E-01,8.66900E-02,6.84150E-02,5.39800E-02,4.25750E-02, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4816:70: + + & 1.09790E-01,8.66900E-02,6.84150E-02,5.39800E-02,4.25750E-02, & + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4817:22: + + & 3.35700E-02,2.39900E-02,1.36775E-02,5.01750E-03,5.30000E-04 / + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4817:34: + + & 3.35700E-02,2.39900E-02,1.36775E-02,5.01750E-03,5.30000E-04 / + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4817:46: + + & 3.35700E-02,2.39900E-02,1.36775E-02,5.01750E-03,5.30000E-04 / + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4817:58: + + & 3.35700E-02,2.39900E-02,1.36775E-02,5.01750E-03,5.30000E-04 / + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4817:70: + + & 3.35700E-02,2.39900E-02,1.36775E-02,5.01750E-03,5.30000E-04 / + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4451:23: + + iendwv_grt(i) = 10000. / wavelength(i) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:5412:21: + + integer :: i, indx, ii + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:5412:27: + + integer :: i, indx, ii + 1 +Warning: Unused variable ‘indx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:5413:24: + + character :: tp*2 + 1 +Warning: Unused variable ‘tp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:5101:40: + + & ( alon,alat,prslk,rhlay,dz,hz,NSWLWBD, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘hz’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:5103:27: + + & IMAX,NLAY,NLP1, ivflip, lsswr,lslwr, & + 1 +Warning: Unused dummy argument ‘nlp1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4378:53: + + real (kind=kind_io8), Dimension( NP2 ) :: Angle, Cos_Angle, & + 1 +Warning: Unused variable ‘angle’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4385:66: + + & sigma(nAero), wave,n_fac,PI,t1,s1,g1 + 1 +Warning: Unused variable ‘g1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4385:54: + + & sigma(nAero), wave,n_fac,PI,t1,s1,g1 + 1 +Warning: Unused variable ‘n_fac’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4377:27: + + INTEGER :: NW, NS, nH, n_bin + 1 +Warning: Unused variable ‘nh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4385:57: + + & sigma(nAero), wave,n_fac,PI,t1,s1,g1 + 1 +Warning: Unused variable ‘pi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4385:63: + + & sigma(nAero), wave,n_fac,PI,t1,s1,g1 + 1 +Warning: Unused variable ‘s1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:4385:60: + + & sigma(nAero), wave,n_fac,PI,t1,s1,g1 + 1 +Warning: Unused variable ‘t1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:3734:48: + + integer :: i, mb, ib, ii, iw, iw1, iw2, ik, ibs, ibe + 1 +Warning: Unused variable ‘ik’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:3651:40: + + & ( NWVTOT,solfwv,soltot,NWVTIR,eirfwv, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘nwvtir’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:3651:19: + + & ( NWVTOT,solfwv,soltot,NWVTIR,eirfwv, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘nwvtot’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:3651:33: + + & ( NWVTOT,solfwv,soltot,NWVTIR,eirfwv, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘soltot’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:3356:37: + + real (kind=kind_phys) :: cm, hd, hdi, sig0u, sig0l, ratio, tt0, & + 1 +Warning: Unused variable ‘hd’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:3356:42: + + real (kind=kind_phys) :: cm, hd, hdi, sig0u, sig0l, ratio, tt0, & + 1 +Warning: Unused variable ‘hdi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:3361:49: + + integer :: ih1, ih2, kk, idom, icmp, ib, ii, ic, ic1 + 1 +Warning: Unused variable ‘ii’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:3356:56: + + real (kind=kind_phys) :: cm, hd, hdi, sig0u, sig0l, ratio, tt0, & + 1 +Warning: Unused variable ‘sig0l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:3356:49: + + real (kind=kind_phys) :: cm, hd, hdi, sig0u, sig0l, ratio, tt0, & + 1 +Warning: Unused variable ‘sig0u’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:2887:22: + + & ( prsi,prsl,prslk,tvly,rhlay,dz,hz,tracer, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘prsl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:2887:28: + + & ( prsi,prsl,prslk,tvly,rhlay,dz,hz,tracer, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘prslk’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:2887:52: + + & ( prsi,prsl,prslk,tvly,rhlay,dz,hz,tracer, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘tracer’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:2887:33: + + & ( prsi,prsl,prslk,tvly,rhlay,dz,hz,tracer, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘tvly’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:1285:61: + + integer :: i, j, k, m, mb, ib, ii, id, iw, iw1, iw2, ik, ibs, ibe + 1 +Warning: Unused variable ‘ik’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:1285:24: + + integer :: i, j, k, m, mb, ib, ii, id, iw, iw1, iw2, ik, ibs, ibe + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:1112:31: + + & ( solfwv, eirfwv, me & ! --- inputs + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:1000:39: + + integer :: nb, nw, nw1, nw2, nmax, nmin + 1 +Warning: Unused variable ‘nmax’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:1000:45: + + integer :: nb, nw, nw1, nw2, nmax, nmin + 1 +Warning: Unused variable ‘nmin’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:998:37: + + real (kind=kind_phys) :: soltot, tmp1, tmp2, tmp3 + 1 +Warning: Unused variable ‘soltot’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:685:17: + + & ( NLAY, me ) ! --- inputs + 1 +Warning: Unused dummy argument ‘nlay’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:3650:0: + + subroutine gocart_init & + +Warning: ‘gocart_init’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:1444:0: + + if (ib == ibs) then + +Warning: ‘ibs’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:1285:0: + + integer :: i, j, k, m, mb, ib, ii, id, iw, iw1, iw2, ik, ibs, ibe + +note: ‘ibs’ was declared here +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:1449:0: + + if (ib == ibe) then + +Warning: ‘ibe’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:1285:0: + + integer :: i, j, k, m, mb, ib, ii, id, iw, iw1, iw2, ik, ibs, ibe + +note: ‘ibe’ was declared here +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:1538:0: + + if (ib == ibs) then + +Warning: ‘ibs’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:1285:0: + + integer :: i, j, k, m, mb, ib, ii, id, iw, iw1, iw2, ik, ibs, ibe + +note: ‘ibs’ was declared here +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:1543:0: + + if (ib == ibe) then + +Warning: ‘ibe’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_aerosols.f:1285:0: + + integer :: i, j, k, m, mb, ib, ii, id, iw, iw1, iw2, ik, ibs, ibe + +note: ‘ibe’ was declared here +[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_gases.f:1138:17: + + j1 = tem1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_gases.f:606:31: + + integer :: i, id, j, l, iyr, imo, iyr1, iyr2, jyr, idyr + 1 +Warning: Unused variable ‘l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_gases.f:298:38: + + logical :: file_exist, lextpl + 1 +Warning: Unused variable ‘lextpl’ declared at (1) [-Wunused-variable] +[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o +[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:738:5: + + 1007 format(A,F2.0,A,f6.2,A,f7.3,A,f7.2) + 1 +Warning: Label 1007 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:737:5: + + 1006 format(A,F7.3,A,f9.4,A,f9.5,A,f9.4) + 1 +Warning: Label 1006 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:1139:5: + + 1000 format(A,F6.1, A,f6.1, A,f5.1, A,f7.1) + 1 +Warning: Label 1000 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:2085:47: + + REAL :: qsl,esat,qsat,tlk,qsat_tl,dqsl,cld0,q1k,eq1,qll,& + 1 +Warning: Unused variable ‘cld0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:2104:42: + + REAL :: theta1, theta2, ht1, ht2 + 1 +Warning: Unused variable ‘ht1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:2104:47: + + REAL :: theta1, theta2, ht1, ht2 + 1 +Warning: Unused variable ‘ht2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:2087:16: + + INTEGER :: i,j,k + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:2087:18: + + INTEGER :: i,j,k + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:2099:45: + + REAL :: RH_00L, RH_00O, phi_dz, lfac + 1 +Warning: Unused variable ‘phi_dz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:2085:25: + + REAL :: qsl,esat,qsat,tlk,qsat_tl,dqsl,cld0,q1k,eq1,qll,& + 1 +Warning: Unused variable ‘qsat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:2099:29: + + REAL :: RH_00L, RH_00O, phi_dz, lfac + 1 +Warning: Unused variable ‘rh_00l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:2099:37: + + REAL :: RH_00L, RH_00O, phi_dz, lfac + 1 +Warning: Unused variable ‘rh_00o’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:2104:29: + + REAL :: theta1, theta2, ht1, ht2 + 1 +Warning: Unused variable ‘theta1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:2104:37: + + REAL :: theta1, theta2, ht1, ht2 + 1 +Warning: Unused variable ‘theta2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:2086:77: + + &q2p,pt,rac,qt,t,xl,rsl,cpm,cdhdz,Fng,qww,alpha,beta,bb,ls_min,ls,wt + 1 +Warning: Unused variable ‘wt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:1749:31: + + SUBROUTINE Andreas_2002(Z_0,bvisc,ustar,Zt,Zq) + 1 +Warning: Unused dummy argument ‘z_0’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:1711:70: + + SUBROUTINE Yang_2008(Z_0,Zt,Zq,ustar,tstar,qst,Ren,visc,landsea) + 1 +Warning: Unused dummy argument ‘landsea’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:1711:57: + + SUBROUTINE Yang_2008(Z_0,Zt,Zq,ustar,tstar,qst,Ren,visc,landsea) + 1 +Warning: Unused dummy argument ‘ren’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:1664:48: + + SUBROUTINE fairall_etal_2014(Zt,Zq,Ren,ustar,visc,rstoch,spp_pbl) + 1 +Warning: Unused dummy argument ‘ustar’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:1664:53: + + SUBROUTINE fairall_etal_2014(Zt,Zq,Ren,ustar,visc,rstoch,spp_pbl) + 1 +Warning: Unused dummy argument ‘visc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:1626:48: + + SUBROUTINE fairall_etal_2003(Zt,Zq,Ren,ustar,visc) + 1 +Warning: Unused dummy argument ‘ustar’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:1626:53: + + SUBROUTINE fairall_etal_2003(Zt,Zq,Ren,ustar,visc) + 1 +Warning: Unused dummy argument ‘visc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:1595:17: + + REAL :: Rq + 1 +Warning: Unused variable ‘rq’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:1507:43: + + SUBROUTINE Taylor_Yelland_2001(Z_0,ustar,wsp10) + 1 +Warning: Unused dummy argument ‘ustar’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:1374:54: + + SUBROUTINE zilitinkevich_1995(Z_0,Zt,Zq,restar,ustar,KARMAN,& + 1 +Warning: Unused dummy argument ‘ustar’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:617:30: + + REAL :: DTHVDZ,DTHVM,VCONV,RZOL,RZOL2,RZOL10,ZOL2,ZOL10 + 1 +Warning: Unused variable ‘dthvm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:618:27: + + REAL :: DTG,DTTHX,DTHDZ,PSIT10,PSIQ,PSIQ2,PSIQ10 + 1 +Warning: Unused variable ‘dtthx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:506:28: + + ids,ide, jds,jde, kds,kde, & + 1 +Warning: Unused dummy argument ‘ide’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:506:24: + + ids,ide, jds,jde, kds,kde, & + 1 +Warning: Unused dummy argument ‘ids’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:501:30: + + itimestep, & + 1 +Warning: Unused dummy argument ‘itimestep’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:506:37: + + ids,ide, jds,jde, kds,kde, & + 1 +Warning: Unused dummy argument ‘jde’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:506:33: + + ids,ide, jds,jde, kds,kde, & + 1 +Warning: Unused dummy argument ‘jds’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:507:37: + + ims,ime, jms,jme, kms,kme, & + 1 +Warning: Unused dummy argument ‘jme’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:507:33: + + ims,ime, jms,jme, kms,kme, & + 1 +Warning: Unused dummy argument ‘jms’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:508:37: + + its,ite, jts,jte, kts,kte & + 1 +Warning: Unused dummy argument ‘jte’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:508:33: + + its,ite, jts,jte, kts,kte & + 1 +Warning: Unused dummy argument ‘jts’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:613:23: + + INTEGER :: N,I,K,L,NZOL,NK,NZOL2,NZOL10, ITER, yesno + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:506:46: + + ids,ide, jds,jde, kds,kde, & + 1 +Warning: Unused dummy argument ‘kde’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:506:42: + + ids,ide, jds,jde, kds,kde, & + 1 +Warning: Unused dummy argument ‘kds’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:507:46: + + ims,ime, jms,jme, kms,kme, & + 1 +Warning: Unused dummy argument ‘kme’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:507:42: + + ims,ime, jms,jme, kms,kme, & + 1 +Warning: Unused dummy argument ‘kms’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:508:46: + + its,ite, jts,jte, kts,kte & + 1 +Warning: Unused dummy argument ‘kte’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:508:42: + + its,ite, jts,jte, kts,kte & + 1 +Warning: Unused dummy argument ‘kts’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:613:25: + + INTEGER :: N,I,K,L,NZOL,NK,NZOL2,NZOL10, ITER, yesno + 1 +Warning: Unused variable ‘l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:613:19: + + INTEGER :: N,I,K,L,NZOL,NK,NZOL2,NZOL10, ITER, yesno + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:613:33: + + INTEGER :: N,I,K,L,NZOL,NK,NZOL2,NZOL10, ITER, yesno + 1 +Warning: Unused variable ‘nk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:493:33: + + CP,G,ROVCP,R,XLV,PSFCPA,CHS,CHS2,CQS2, & + 1 +Warning: Unused dummy argument ‘r’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:617:36: + + REAL :: DTHVDZ,DTHVM,VCONV,RZOL,RZOL2,RZOL10,ZOL2,ZOL10 + 1 +Warning: Unused variable ‘vconv’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:500:38: + + KARMAN,ch,vt1,vq1,qc1d,qcg, & + 1 +Warning: Unused dummy argument ‘vq1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:500:34: + + KARMAN,ch,vt1,vq1,qc1d,qcg, & + 1 +Warning: Unused dummy argument ‘vt1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:315:39: + + BulkRi,qstar,resist,logres + 1 +Warning: Unused variable ‘bulkri’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_sf_mynn.F90:109:48: + + SUBROUTINE mynn_sf_init_driver(allowed_to_read) + 1 +Warning: Unused dummy argument ‘allowed_to_read’ at (1) [-Wunused-dummy-argument] +[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90.o +[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f:230:4: + + 610 format(1x,' k pr dkt dku ',i5,3f8.2,' l2 ri t2', + 1 +Warning: Label 610 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f:229:4: + + 609 format(1x,' k pr dkt dku ',i5,3f8.2) + 1 +Warning: Label 609 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f:228:4: + + 608 format(1x,i5,9f8.2) + 1 +Warning: Label 608 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f:226:4: + + 607 format(1x,' kpbl hpbl fm fh hgamt', + 1 +Warning: Label 607 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f:225:4: + + 606 format(1x,i5,6f8.2) + 1 +Warning: Label 606 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f:223:4: + + 605 format(1x,' k zl spd2 thekv the1v' + 1 +Warning: Label 605 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f:222:4: + + 604 format(1x,' sfc',9x,f9.1,18x,f9.1) + 1 +Warning: Label 604 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f:221:4: + + 603 format(1x,i5,8f9.1) + 1 +Warning: Label 603 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f:218:4: + + 602 format(1x,' k',' z',' t',' th', + 1 +Warning: Label 602 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f:217:4: + + 601 format(1x,' moninp lat lon step hour ',3i6,f6.1) + 1 +Warning: Label 601 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f:161:30: + + & dq1, dsdz2, dsdzq, dsdzt, + 1 +Warning: Unused variable ‘dq1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f:162:32: + + & dsdzu, dsdzv, + 1 +Warning: Unused variable ‘dsdzu’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f:162:41: + + & dsdzu, dsdzv, + 1 +Warning: Unused variable ‘dsdzv’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f:163:49: + + & dsig, dt2, dthe1, dtodsd, + 1 +Warning: Unused variable ‘dthe1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f:66:46: + + & kinver,xkzm_m,xkzm_h,xkzm_s,lprnt,ipr, & + 1 +Warning: Unused dummy argument ‘ipr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f:117:20: + + integer i,iprt,is,iun,k,kk,km1,kmpbl,latd,lond + 1 +Warning: Unused variable ‘iprt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f:117:47: + + integer i,iprt,is,iun,k,kk,km1,kmpbl,latd,lond + 1 +Warning: Unused variable ‘latd’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f:117:52: + + integer i,iprt,is,iun,k,kk,km1,kmpbl,latd,lond + 1 +Warning: Unused variable ‘lond’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f:66:42: + + & kinver,xkzm_m,xkzm_h,xkzm_s,lprnt,ipr, & + 1 +Warning: Unused dummy argument ‘lprnt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f:171:31: + + & rone, rzero, sfcfrac, + 1 +Warning: Unused variable ‘rone’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f:171:41: + + & rone, rzero, sfcfrac, + 1 +Warning: Unused variable ‘rzero’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f:179:31: + + & xkzm, xkzmu, + 1 +Warning: Unused variable ‘xkzm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninedmf.f:179:41: + + & xkzm, xkzmu, + 1 +Warning: Unused variable ‘xkzmu’ declared at (1) [-Wunused-variable] +[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv.f:173:25: + + & ( im, km, grav, cp, hvap, rd, eps, epsm1, rvrdm1, ps, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘grav’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv.f:178:28: + + & lheatstrg, isot, ivegsrc, & + 1 +Warning: Unused dummy argument ‘isot’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv.f:173:63: + + & ( im, km, grav, cp, hvap, rd, eps, epsm1, rvrdm1, ps, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘ps’ at (1) [-Wunused-dummy-argument] +[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfdeepcnv.f:238:68: + + real(kind=kind_phys) qlko_ktcon(im), dellal(im,km), tvo(im,km), + 1 +Warning: Unused variable ‘tvo’ declared at (1) [-Wunused-variable] +[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfshalcnv.f:95:30: + + & c0l, d0, + 1 +Warning: Unused variable ‘c0l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/samfshalcnv.f:89:30: + + integer i,j,indx, k, kk, km1, n + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_diag.f:47:18: + + integer :: k,i + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_sice.f:466:23: + + & lprnt, ipr, + 1 +Warning: Unused dummy argument ‘ipr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_sice.f:466:18: + + & lprnt, ipr, + 1 +Warning: Unused dummy argument ‘lprnt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_sice.f:50:27: + + & cplflx, cplchm, flag_cice, islmsk_cice, & + 1 +Warning: Unused dummy argument ‘cplchm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_sice.f:43:67: + + & ( im, km, sbc, hvap, tgice, cp, eps, epsm1, rvrdm1, grav, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘grav’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_sice.f:46:42: + + & cm, ch, prsl1, prslki, prsik1, prslk1, islimsk, wind, & + 1 +Warning: Unused dummy argument ‘prsik1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_sice.f:46:50: + + & cm, ch, prsl1, prslki, prsik1, prslk1, islimsk, wind, & + 1 +Warning: Unused dummy argument ‘prslk1’ at (1) [-Wunused-dummy-argument] +[ 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/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90.o +[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/satmedmfvdifq.F:61:18: + + & grav,rd,cp,rv,hvap,hfus,fv,eps,epsm1, & + 1 +Warning: Unused dummy argument ‘rd’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/satmedmfvdifq.F:198:31: + + & zfac, zfmin, vk, spdk2, + 1 +Warning: Unused variable ‘zfac’ declared at (1) [-Wunused-variable] +[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:2138:7: + + & ntclamt + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:2838:29: + + integer :: i, k, id, nf, n + 1 +Warning: Unused variable ‘nf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:2724:52: + + & xlat,xlon,slmsk,dz,delp, IX, NLAY, NLP1, cldtot, & + 1 +Warning: Unused dummy argument ‘nlp1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:2723:22: + + & ( plyr,plvl,tlyr,tvly,ccnd,ncnd, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘plvl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:2724:22: + + & xlat,xlon,slmsk,dz,delp, IX, NLAY, NLP1, cldtot, & + 1 +Warning: Unused dummy argument ‘xlon’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:2342:27: + + & IX, NLAY, NLP1, & + 1 +Warning: Unused dummy argument ‘nlp1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:2341:18: + + & ntrac,ntcw,ntiw,ntrw,ntsw,ntgl, & + 1 +Warning: Unused dummy argument ‘ntrac’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:2339:22: + + & ( plyr,plvl,tlyr,qlyr,qstl,rhly,clw, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘plvl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:2339:32: + + & ( plyr,plvl,tlyr,qlyr,qstl,rhly,clw, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘qlyr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:2340:28: + + & xlat,xlon,slmsk,dz,delp, & + 1 +Warning: Unused dummy argument ‘slmsk’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:2452:58: + + & cwp, cip, crp, csp, rew, rei, res, rer, tem2d, clwf + 1 +Warning: Unused variable ‘tem2d’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:2457:29: + + & tem1, tem2, tem3 + 1 +Warning: Unused variable ‘tem3’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:2339:27: + + & ( plyr,plvl,tlyr,qlyr,qstl,rhly,clw, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘tlyr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:2340:22: + + & xlat,xlon,slmsk,dz,delp, & + 1 +Warning: Unused dummy argument ‘xlon’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:2162:43: + + real (kind=kind_phys) :: clwmin, clwm, clwt, onemrh, value, & + 1 +Warning: Unused variable ‘clwm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:2162:37: + + real (kind=kind_phys) :: clwmin, clwm, clwt, onemrh, value, & + 1 +Warning: Unused variable ‘clwmin’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:2162:49: + + real (kind=kind_phys) :: clwmin, clwm, clwt, onemrh, value, & + 1 +Warning: Unused variable ‘clwt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:2056:27: + + & IX, NLAY, NLP1, & + 1 +Warning: Unused dummy argument ‘nlp1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:2055:18: + + & ntrac,ntcw,ntiw,ntrw,ntsw,ntgl,ntclamt, & + 1 +Warning: Unused dummy argument ‘ntrac’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:2162:57: + + real (kind=kind_phys) :: clwmin, clwm, clwt, onemrh, value, & + 1 +Warning: Unused variable ‘onemrh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:2053:22: + + & ( plyr,plvl,tlyr,tvly,qlyr,qstl,rhly,clw, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘plvl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:2053:37: + + & ( plyr,plvl,tlyr,tvly,qlyr,qstl,rhly,clw, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘qlyr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:2053:42: + + & ( plyr,plvl,tlyr,tvly,qlyr,qstl,rhly,clw, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘qstl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:2053:47: + + & ( plyr,plvl,tlyr,tvly,qlyr,qstl,rhly,clw, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘rhly’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:2162:64: + + real (kind=kind_phys) :: clwmin, clwm, clwt, onemrh, value, & + 1 +Warning: Unused variable ‘value’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:2054:22: + + & xlat,xlon,slmsk, dz, delp, & + 1 +Warning: Unused dummy argument ‘xlon’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:1819:43: + + real (kind=kind_phys) :: clwmin, clwm, clwt, onemrh, value, & + 1 +Warning: Unused variable ‘clwm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:1819:37: + + real (kind=kind_phys) :: clwmin, clwm, clwt, onemrh, value, & + 1 +Warning: Unused variable ‘clwmin’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:1713:61: + + & ( plyr,plvl,tlyr,tvly,qlyr,qstl,rhly,clw,cnvw,cnvc, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘cnvc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:1715:27: + + & IX, NLAY, NLP1, & + 1 +Warning: Unused dummy argument ‘nlp1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:1819:57: + + real (kind=kind_phys) :: clwmin, clwm, clwt, onemrh, value, & + 1 +Warning: Unused variable ‘onemrh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:1713:22: + + & ( plyr,plvl,tlyr,tvly,qlyr,qstl,rhly,clw,cnvw,cnvc, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘plvl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:1713:37: + + & ( plyr,plvl,tlyr,tvly,qlyr,qstl,rhly,clw,cnvw,cnvc, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘qlyr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:1713:42: + + & ( plyr,plvl,tlyr,tvly,qlyr,qstl,rhly,clw,cnvw,cnvc, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘qstl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:1713:47: + + & ( plyr,plvl,tlyr,tvly,qlyr,qstl,rhly,clw,cnvw,cnvc, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘rhly’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:1819:64: + + real (kind=kind_phys) :: clwmin, clwm, clwt, onemrh, value, & + 1 +Warning: Unused variable ‘value’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:1714:22: + + & xlat,xlon,slmsk,cldtot, dz, delp, & + 1 +Warning: Unused dummy argument ‘xlon’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:1430:43: + + real (kind=kind_phys) :: clwmin, clwm, clwt, onemrh, value, & + 1 +Warning: Unused variable ‘clwm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:1430:37: + + real (kind=kind_phys) :: clwmin, clwm, clwt, onemrh, value, & + 1 +Warning: Unused variable ‘clwmin’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:1318:30: + + & deltaq,sup,kdt,me, & + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:1317:27: + + & ix, nlay, nlp1, & + 1 +Warning: Unused dummy argument ‘nlp1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:1430:57: + + real (kind=kind_phys) :: clwmin, clwm, clwt, onemrh, value, & + 1 +Warning: Unused variable ‘onemrh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:1315:22: + + & ( plyr,plvl,tlyr,tvly,qlyr,qstl,rhly,clw,cnvw,cnvc, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘plvl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:1430:64: + + real (kind=kind_phys) :: clwmin, clwm, clwt, onemrh, value, & + 1 +Warning: Unused variable ‘value’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:1316:22: + + & xlat,xlon,slmsk, dz, delp, & + 1 +Warning: Unused dummy argument ‘xlon’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:869:27: + + & IX, NLAY, NLP1, lmfshal, lmfdeep2, & + 1 +Warning: Unused dummy argument ‘nlp1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:868:28: + + & xlat,xlon,slmsk,dz,delp, f_ice,f_rain,r_rime,flgmin, & + 1 +Warning: Unused dummy argument ‘slmsk’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:868:22: + + & xlat,xlon,slmsk,dz,delp, f_ice,f_rain,r_rime,flgmin, & + 1 +Warning: Unused dummy argument ‘xlon’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:435:52: + + & xlat,xlon,slmsk,dz,delp, IX, NLAY, NLP1, & + 1 +Warning: Unused dummy argument ‘nlp1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:434:22: + + & ( plyr,plvl,tlyr,tvly,qlyr,qstl,rhly,clw, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘plvl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:434:37: + + & ( plyr,plvl,tlyr,tvly,qlyr,qstl,rhly,clw, & ! --- inputs: + 1 +Warning: Unused dummy argument ‘qlyr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:435:22: + + & xlat,xlon,slmsk,dz,delp, IX, NLAY, NLP1, & + 1 +Warning: Unused dummy argument ‘xlon’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radiation_clouds.f:323:27: + + integer :: k, kl, ier + 1 +Warning: Unused variable ‘ier’ declared at (1) [-Wunused-variable] +[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_main.f:3524:20: + + itgas = tblint*tblind + 0.5 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_main.f:3556:23: + + ittot = tblint*tblind + 0.5 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_main.f:3098:20: + + itgas = tblint*tblind + 0.5 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_main.f:3136:23: + + ittot = tblint*tblind + 0.5 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_main.f:2540:20: + + itgas = tblint*tblind + 0.5 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_main.f:2572:23: + + ittot = tblint*tblind + 0.5 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_main.f:3337:36: + + & fracs,secdif, nlay,nlp1, & + 1 +Warning: Unused dummy argument ‘nlp1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_main.f:2062:23: + + & nlay, nlp1, & + 1 +Warning: Unused dummy argument ‘nlp1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_main.f:1494:54: + + & ( cfrac,cliqp,reliq,cicep,reice,cdat1,cdat2,cdat3,cdat4, & ! --- inputs + 1 +Warning: Unused dummy argument ‘cdat2’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radlw_main.f:393:36: + + & npts, nlay, nlp1, lprnt, cld_cf, lslwr, & + 1 +Warning: Unused dummy argument ‘lprnt’ at (1) [-Wunused-dummy-argument] +[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f:3411:22: + + itind = ftind*NTBMX + 0.5 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f:3457:22: + + itind = ftind*NTBMX + 0.5 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f:3467:22: + + itind = ftind*NTBMX + 0.5 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f:3623:26: + + itind = ftind*NTBMX + 0.5 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f:3669:26: + + itind = ftind*NTBMX + 0.5 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f:3679:26: + + itind = ftind*NTBMX + 0.5 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f:2634:22: + + itind = ftind*NTBMX + 0.5 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f:2680:22: + + itind = ftind*NTBMX + 0.5 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f:2690:22: + + itind = ftind*NTBMX + 0.5 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f:2859:26: + + itind = ftind*NTBMX + 0.5 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f:2905:26: + + itind = ftind*NTBMX + 0.5 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f:2915:26: + + itind = ftind*NTBMX + 0.5 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f:4111:46: + + integer :: ibd, j, jb, js, k, klow, khgh, klim, ks, njb, ns + 1 +Warning: Unused variable ‘khgh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f:4111:52: + + integer :: ibd, j, jb, js, k, klow, khgh, klim, ks, njb, ns + 1 +Warning: Unused variable ‘klim’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f:4111:40: + + integer :: ibd, j, jb, js, k, klow, khgh, klim, ks, njb, ns + 1 +Warning: Unused variable ‘klow’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f:3136:20: + + & cf1,cf0,taug,taur,tauae,ssaae,asyae,taucw,ssacw,asycw, & + 1 +Warning: Unused dummy argument ‘cf0’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f:2223:18: + + integer :: i, k, jp1 + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f:2165:42: + + & ( pavel,tavel,h2ovmr, nlay,nlp1, & ! --- inputs + 1 +Warning: Unused dummy argument ‘nlp1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f:466:63: + + & gasvmr_cfc11,gasvmr_cfc12,gasvmr_cfc22,gasvmr_ccl4, & ! --- inputs + 1 +Warning: Unused dummy argument ‘gasvmr_ccl4’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f:466:25: + + & gasvmr_cfc11,gasvmr_cfc12,gasvmr_cfc22,gasvmr_ccl4, & ! --- inputs + 1 +Warning: Unused dummy argument ‘gasvmr_cfc11’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f:466:38: + + & gasvmr_cfc11,gasvmr_cfc12,gasvmr_cfc22,gasvmr_ccl4, & ! --- inputs + 1 +Warning: Unused dummy argument ‘gasvmr_cfc12’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f:466:51: + + & gasvmr_cfc11,gasvmr_cfc12,gasvmr_cfc22,gasvmr_ccl4, & ! --- inputs + 1 +Warning: Unused dummy argument ‘gasvmr_cfc22’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f:465:65: + + & gasvmr_co2,gasvmr_n2o,gasvmr_ch4,gasvmr_o2,gasvmr_co, & + 1 +Warning: Unused dummy argument ‘gasvmr_co’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f:464:22: + + & ( plyr,plvl,tlyr,tlvl,qlyr,olyr, & + 1 +Warning: Unused dummy argument ‘plvl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/radsw_main.f:464:32: + + & ( plyr,plvl,tlyr,tlvl,qlyr,olyr, & + 1 +Warning: Unused dummy argument ‘tlvl’ at (1) [-Wunused-dummy-argument] +[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:817:78: + + subroutine cool_skin(ustar_a,f_nsol,f_sol_0,evap,sss,alpha,beta,rho_w,rho_a,ts,q_ts,hl_ts,grav,le,deltat_c,z_c,c_0,c_d) + 1 +Warning: Unused dummy argument ‘ts’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:768:24: + + subroutine cal_tztr(kdt,xt,c_0,c_d,w_0,w_d,zc,zw,z,tztr) + 1 +Warning: Unused dummy argument ‘kdt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:708:56: + + subroutine app_sfs(kdt,xt,xs,xu,xv,alpha,beta,grav,d_1p,xz) + 1 +Warning: Unused dummy argument ‘d_1p’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:708:23: + + subroutine app_sfs(kdt,xt,xs,xu,xv,alpha,beta,grav,d_1p,xz) + 1 +Warning: Unused dummy argument ‘kdt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:734:14: + + integer :: n + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:676:24: + + subroutine cal_ttop(kdt,timestep,q_warm,rho,dz,xt,xz,ttop) + 1 +Warning: Unused dummy argument ‘kdt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:644:21: + + subroutine cal_w(kdt,xz,xt,xzts,xtts,w_0,w_d) + 1 +Warning: Unused dummy argument ‘kdt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:487:37: + + alpha,beta,alon,sinlat,soltim,grav,le,xt,xs,xu,xv,xz,xzts,xtts) + 1 +Warning: Unused dummy argument ‘alon’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:486:25: + + subroutine dtm_onset(kdt,timestep,rich,tox,toy,i0,q,sss,sep,q_ts,hl_ts,rho, & + 1 +Warning: Unused dummy argument ‘kdt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:487:51: + + alpha,beta,alon,sinlat,soltim,grav,le,xt,xs,xu,xv,xz,xzts,xtts) + 1 +Warning: Unused dummy argument ‘soltim’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:404:24: + + subroutine convdepth(kdt,timestep,i0,q,sss,sep,rho,alpha,beta,xt,xs,xz,d_conv) + 1 +Warning: Unused dummy argument ‘kdt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:404:42: + + subroutine convdepth(kdt,timestep,i0,q,sss,sep,rho,alpha,beta,xt,xs,xz,d_conv) + 1 +Warning: Unused dummy argument ‘sss’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:383:34: + + subroutine dtm_1p_mta(dta,xt,xtts,xz,xzts) + 1 +Warning: Unused dummy argument ‘xtts’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:383:42: + + subroutine dtm_1p_mta(dta,xt,xtts,xz,xzts) + 1 +Warning: Unused dummy argument ‘xzts’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:366:30: + + subroutine dtm_1p_mda(xt,xtts,xz,xzts) + 1 +Warning: Unused dummy argument ‘xtts’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:366:38: + + subroutine dtm_1p_mda(xt,xtts,xz,xzts) + 1 +Warning: Unused dummy argument ‘xzts’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:352:30: + + subroutine dtm_1p_mwa(xt,xtts,xz,xzts) + 1 +Warning: Unused dummy argument ‘xtts’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:352:38: + + subroutine dtm_1p_mwa(xt,xtts,xz,xzts) + 1 +Warning: Unused dummy argument ‘xzts’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:332:36: + + subroutine dtm_1p_tla(dz,te,xt,xtts,xz,xzts) + 1 +Warning: Unused dummy argument ‘xtts’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:332:44: + + subroutine dtm_1p_tla(dz,te,xt,xtts,xz,xzts) + 1 +Warning: Unused dummy argument ‘xzts’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:314:37: + + subroutine dtm_1p_fca(d_conv,xt,xtts,xz,xzts) + 1 +Warning: Unused dummy argument ‘xtts’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:314:45: + + subroutine dtm_1p_fca(d_conv,xt,xtts,xz,xzts) + 1 +Warning: Unused dummy argument ‘xzts’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:92:28: + + beta,alon,sinlat,soltim,grav,le,d_conv, & + 1 +Warning: Unused dummy argument ‘alon’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:92:57: + + beta,alon,sinlat,soltim,grav,le,d_conv, & + 1 +Warning: Unused dummy argument ‘d_conv’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:91:22: + + subroutine eulerm(kdt,timestep,rich,tox,toy,i0,q,sss,sep,q_ts,hl_ts,rho,alpha,& + 1 +Warning: Unused dummy argument ‘kdt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:92:42: + + beta,alon,sinlat,soltim,grav,le,d_conv, & + 1 +Warning: Unused dummy argument ‘soltim’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_nst_model.f90:306:0: + + xz = max(xz_mda,xz_fca,xz_tla,xz_mwa) + +Warning: ‘xz_mwa’ may be used uninitialized in this function [-Wmaybe-uninitialized] +[ 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:2104:37: + + & FQAI, dNil, FQA + 1 +Warning: Unused variable ‘fqai’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:2103:68: + + real , dimension(im,lm) :: fQi,dQil, DQmax, QLTOT, QITOT, FQAL, + 1 +Warning: Unused variable ‘fqal’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:2103:36: + + real , dimension(im,lm) :: fQi,dQil, DQmax, QLTOT, QITOT, FQAL, + 1 +Warning: Unused variable ‘fqi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:2024:46: + + & QAi , SC_ICE , CF , AF , PF, pdfflag) + 1 +Warning: Unused dummy argument ‘cf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:2032:22: + + & QL, DQSx, sigmaqt1, sigmaqt2, qsnx, esl, esi,pl100 + 1 +Warning: Unused variable ‘dqsx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:2032:53: + + & QL, DQSx, sigmaqt1, sigmaqt2, qsnx, esl, esi,pl100 + 1 +Warning: Unused variable ‘esl’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:2031:61: + + real :: qt, QCx, QSn, tmpARR, CFALL, QVx, CFio, QA, QAx, QC, QI, & + 1 +Warning: Unused variable ‘qax’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:2031:69: + + real :: qt, QCx, QSn, tmpARR, CFALL, QVx, CFio, QA, QAx, QC, QI, & + 1 +Warning: Unused variable ‘qi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:2032:16: + + & QL, DQSx, sigmaqt1, sigmaqt2, qsnx, esl, esi,pl100 + 1 +Warning: Unused variable ‘ql’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:2032:48: + + & QL, DQSx, sigmaqt1, sigmaqt2, qsnx, esl, esi,pl100 + 1 +Warning: Unused variable ‘qsnx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1910:31: + + & DENAIR, DENICE, AUX, DCF, QTOT, LHCORR, QL, DQI, DQL, QVINC, + 1 +Warning: Unused variable ‘dcf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1911:62: + + & QSLIQ, CFALL, new_QI, new_QL, QSICE, fQI_0, QS_0, DQS_0, FQA, + 1 +Warning: Unused variable ‘dqs_0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1909:50: + + real :: DC, TEFF,QCm,DEP, QC, QS, RHCR, DQSL, DQSI, QI, TC, DIFF, + 1 +Warning: Unused variable ‘dqsl’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1913:23: + + real esl,esi, esn,desdt,weight,hlatsb,hlatvp,hltalt,tterm, + 1 +Warning: Unused variable ‘esn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1913:43: + + real esl,esi, esn,desdt,weight,hlatsb,hlatvp,hltalt,tterm, + 1 +Warning: Unused variable ‘hlatsb’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1913:50: + + real esl,esi, esn,desdt,weight,hlatsb,hlatvp,hltalt,tterm, + 1 +Warning: Unused variable ‘hlatvp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1911:27: + + & QSLIQ, CFALL, new_QI, new_QL, QSICE, fQI_0, QS_0, DQS_0, FQA, + 1 +Warning: Unused variable ‘new_qi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1911:35: + + & QSLIQ, CFALL, new_QI, new_QL, QSICE, fQI_0, QS_0, DQS_0, FQA, + 1 +Warning: Unused variable ‘new_ql’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1902:33: + + & QLLS , QLCN , CF , AF , NL , NI , DQALL , FQI ) + 1 +Warning: Unused dummy argument ‘nl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1909:34: + + real :: DC, TEFF,QCm,DEP, QC, QS, RHCR, DQSL, DQSI, QI, TC, DIFF, + 1 +Warning: Unused variable ‘qc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1909:26: + + real :: DC, TEFF,QCm,DEP, QC, QS, RHCR, DQSL, DQSI, QI, TC, DIFF, + 1 +Warning: Unused variable ‘qcm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1909:38: + + real :: DC, TEFF,QCm,DEP, QC, QS, RHCR, DQSL, DQSI, QI, TC, DIFF, + 1 +Warning: Unused variable ‘qs’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1911:55: + + & QSLIQ, CFALL, new_QI, new_QL, QSICE, fQI_0, QS_0, DQS_0, FQA, + 1 +Warning: Unused variable ‘qs_0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1909:44: + + real :: DC, TEFF,QCm,DEP, QC, QS, RHCR, DQSL, DQSI, QI, TC, DIFF, + 1 +Warning: Unused variable ‘rhcr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1913:63: + + real esl,esi, esn,desdt,weight,hlatsb,hlatvp,hltalt,tterm, + 1 +Warning: Unused variable ‘tterm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1913:36: + + real esl,esi, esn,desdt,weight,hlatsb,hlatvp,hltalt,tterm, + 1 +Warning: Unused variable ‘weight’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1720:32: + + real :: RAIN_DAY,LAMBDA,A,B,SLOPR,DIAM1 + 1 +Warning: Unused variable ‘a’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1720:34: + + real :: RAIN_DAY,LAMBDA,A,B,SLOPR,DIAM1 + 1 +Warning: Unused variable ‘b’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1720:30: + + real :: RAIN_DAY,LAMBDA,A,B,SLOPR,DIAM1 + 1 +Warning: Unused variable ‘lambda’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1356:29: + + real :: PFi,PFl,QS,dQS,ENVFRAC + 1 +Warning: Unused variable ‘dqs’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1379:15: + + real esl,esi, esn,desdt,weight,tc,hlatsb,hlatvp,hltalt,tterm, + 1 +Warning: Unused variable ‘esl’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1322:34: + + & ENVFC,DDRFC, AF, CF, PCBL,i ) + 1 +Warning: Unused dummy argument ‘i’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1374:33: + + integer :: NS, NSMX, itr,L + 1 +Warning: Unused variable ‘l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1374:20: + + integer :: NS, NSMX, itr,L + 1 +Warning: Unused variable ‘ns’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1374:26: + + integer :: NS, NSMX, itr,L + 1 +Warning: Unused variable ‘nsmx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1318:16: + + & QCl , QCi , TE , QV , mass , imass , PL , dZE , QDDF3 , AA , BB ,& + 1 +Warning: Unused dummy argument ‘qci’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1372:31: + + real :: TAU_FRZ, TAU_MLT, QSICE, DQSI + 1 +Warning: Unused variable ‘tau_mlt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1238:56: + + & TE, QV, DCF, DMF, QLA, QIA, CF, AF, QS, & + 1 +Warning: Unused dummy argument ‘cf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1237:38: + + subroutine cnvsrc( DT, ICEPARAM, SCLMFDFR, MASS, iMASS, PL, & + 1 +Warning: Unused dummy argument ‘iceparam’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1237:54: + + subroutine cnvsrc( DT, ICEPARAM, SCLMFDFR, MASS, iMASS, PL, & + 1 +Warning: Unused dummy argument ‘mass’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1237:65: + + subroutine cnvsrc( DT, ICEPARAM, SCLMFDFR, MASS, iMASS, PL, & + 1 +Warning: Unused dummy argument ‘pl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1246:30: + + real :: TEND,QVx,QCA,fQi + 1 +Warning: Unused variable ‘qca’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1238:52: + + & TE, QV, DCF, DMF, QLA, QIA, CF, AF, QS, & + 1 +Warning: Unused dummy argument ‘qia’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1238:47: + + & TE, QV, DCF, DMF, QLA, QIA, CF, AF, QS, & + 1 +Warning: Unused dummy argument ‘qla’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:823:31: + + real :: QT, QMX, QMN, DQ, QVtop, sigmaqt1, sigmaqt2, qsnx + 1 +Warning: Unused variable ‘dq’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:835:43: + + real :: QX, QSLIQ, QSICE, DQx, pl100, tmpARR + 1 +Warning: Unused variable ‘dqx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:811:29: + + subroutine hystpdf( DT, ALPHA, PDFSHAPE, qc_min, PL, QV, QCl, QAl& + 1 +Warning: Unused dummy argument ‘dt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:823:27: + + real :: QT, QMX, QMN, DQ, QVtop, sigmaqt1, sigmaqt2, qsnx + 1 +Warning: Unused variable ‘qmn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:823:22: + + real :: QT, QMX, QMN, DQ, QVtop, sigmaqt1, sigmaqt2, qsnx + 1 +Warning: Unused variable ‘qmx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:826:33: + + real :: QSx, DQSx, QS, DQs + 1 +Warning: Unused variable ‘qs’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:835:31: + + real :: QX, QSLIQ, QSICE, DQx, pl100, tmpARR + 1 +Warning: Unused variable ‘qsice’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:835:24: + + real :: QX, QSLIQ, QSICE, DQx, pl100, tmpARR + 1 +Warning: Unused variable ‘qsliq’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:827:23: + + &, TEp, QSp, CFp, QVp, QCp + 1 +Warning: Unused variable ‘qsp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:822:23: + + real :: QCO, QVO, CFO, QAO, TAU + 1 +Warning: Unused variable ‘qvo’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:823:38: + + real :: QT, QMX, QMN, DQ, QVtop, sigmaqt1, sigmaqt2, qsnx + 1 +Warning: Unused variable ‘qvtop’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:835:17: + + real :: QX, QSLIQ, QSICE, DQx, pl100, tmpARR + 1 +Warning: Unused variable ‘qx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:822:38: + + real :: QCO, QVO, CFO, QAO, TAU + 1 +Warning: Unused variable ‘tau’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:723:33: + + real :: CFO, pl100, QT, DQ, QSx, QCx, QC, QA & + 1 +Warning: Unused variable ‘dq’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:724:43: + + &, QX, QSLIQ, QSICE, CFALL, DQx, FQA, tem + 1 +Warning: Unused variable ‘dqx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:584:31: + + subroutine pdf_spread (K, LM, PP, ALPHA, ALPHT_DIAG, FRLAND, rhc) + 1 +Warning: Unused dummy argument ‘k’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:584:35: + + subroutine pdf_spread (K, LM, PP, ALPHA, ALPHT_DIAG, FRLAND, rhc) + 1 +Warning: Unused dummy argument ‘lm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:122:46: + + &, lprnt, ipr, rhc, pdfflag, qc_min ) + 1 +Warning: Unused dummy argument ‘ipr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:188:23: + + integer :: I , J , K , L + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:188:31: + + integer :: I , J , K , L + 1 +Warning: Unused variable ‘l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:122:41: + + &, lprnt, ipr, rhc, pdfflag, qc_min ) + 1 +Warning: Unused dummy argument ‘lprnt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:117:50: + + &, PHYSPARAMS, SCLMFDFR & + 1 +Warning: Unused dummy argument ‘sclmfdfr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:193:29: + + &, dti, tx1, tend, fqi + 1 +Warning: Unused variable ‘tend’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:192:35: + + real :: MASS, iMASS, TOTFRC, TEMP, ALPHA + 1 +Warning: Unused variable ‘totfrc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:5085:7: + + function derf(x) + 1 +Warning: ‘derf’ declared at (1) may shadow the intrinsic of the same name. In order to call the intrinsic, explicit INTRINSIC declarations may be required. [-Wintrinsic-shadow] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:5268:7: + + FUNCTION GAMMA(X) + 1 +Warning: ‘gamma’ declared at (1) may shadow the intrinsic of the same name. In order to call the intrinsic, explicit INTRINSIC declarations may be required. [-Wintrinsic-shadow] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:165:32: + + &, cons16, cons17, cons18, cons19, cons20 + 1 +Warning: Unused PRIVATE module variable ‘cons16’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:165:40: + + &, cons16, cons17, cons18, cons19, cons20 + 1 +Warning: Unused PRIVATE module variable ‘cons17’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:147:29: + + real(r8), private:: Ecc + 1 +Warning: Unused PRIVATE module variable ‘ecc’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:5234:21: + + REAL(r8) :: TC, mui, lx + 1 +Warning: Unused variable ‘tc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:933:28: + + real(r8) bbi, cci, ak, iciwc, rvi, riter + 1 +Warning: Unused variable ‘ak’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:712:52: + + &, arg, alpha + 1 +Warning: Unused variable ‘alpha’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:936:32: + + real(r8) Tk, deles, Aprpr, Bprpr, Cice, qi0, Crate, qidep + 1 +Warning: Unused variable ‘aprpr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:712:45: + + &, arg, alpha + 1 +Warning: Unused variable ‘arg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:933:19: + + real(r8) bbi, cci, ak, iciwc, rvi, riter + 1 +Warning: Unused variable ‘bbi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:972:59: + + real(r8) :: beta6, xs, nssoot, nsdust, taux, psc, Bh, vaux, aux, + 1 +Warning: Unused variable ‘bh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:936:39: + + real(r8) Tk, deles, Aprpr, Bprpr, Cice, qi0, Crate, qidep + 1 +Warning: Unused variable ‘bprpr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:703:54: + + real(r8), dimension(pcols) :: icwc, calpha, cbeta, cbetah + 1 +Warning: Unused variable ‘calpha’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:703:61: + + real(r8), dimension(pcols) :: icwc, calpha, cbeta, cbetah + 1 +Warning: Unused variable ‘cbeta’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:703:69: + + real(r8), dimension(pcols) :: icwc, calpha, cbeta, cbetah + 1 +Warning: Unused variable ‘cbetah’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:933:24: + + real(r8) bbi, cci, ak, iciwc, rvi, riter + 1 +Warning: Unused variable ‘cci’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:704:56: + + &, cgamma, cgamah, rcgama + 1 +Warning: Unused variable ‘cgamah’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:704:48: + + &, cgamma, cgamah, rcgama + 1 +Warning: Unused variable ‘cgamma’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:936:45: + + real(r8) Tk, deles, Aprpr, Bprpr, Cice, qi0, Crate, qidep + 1 +Warning: Unused variable ‘cice’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:705:47: + + &, cmec1, cmec2, cmec3, cmec4 + 1 +Warning: Unused variable ‘cmec1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:705:54: + + &, cmec1, cmec2, cmec3, cmec4 + 1 +Warning: Unused variable ‘cmec2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:705:61: + + &, cmec1, cmec2, cmec3, cmec4 + 1 +Warning: Unused variable ‘cmec3’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:705:68: + + &, cmec1, cmec2, cmec3, cmec4 + 1 +Warning: Unused variable ‘cmec4’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:936:57: + + real(r8) Tk, deles, Aprpr, Bprpr, Cice, qi0, Crate, qidep + 1 +Warning: Unused variable ‘crate’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:831:32: + + real(r8) :: csigma(pcols) + 1 +Warning: Unused variable ‘csigma’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:510:24: + + & qn, qtend, cwtend, qc, qi, nc, ni,fprcp,qrn,qsnw,nrn,nsnw, & + 1 +Warning: Unused dummy argument ‘cwtend’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:936:25: + + real(r8) Tk, deles, Aprpr, Bprpr, Cice, qi0, Crate, qidep + 1 +Warning: Unused variable ‘deles’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:964:19: + + real(r8) dmc,ssmc,dstrn + 1 +Warning: Unused variable ‘dmc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:964:30: + + real(r8) dmc,ssmc,dstrn + 1 +Warning: Unused variable ‘dstrn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:801:36: + + real(r8) :: dumnr(pcols,pver) + 1 +Warning: Unused variable ‘dumnr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:799:36: + + real(r8) :: dumns(pcols,pver) + 1 +Warning: Unused variable ‘dumns’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:800:35: + + real(r8) :: dumr(pcols,pver) + 1 +Warning: Unused variable ‘dumr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:798:35: + + real(r8) :: dums(pcols,pver) + 1 +Warning: Unused variable ‘dums’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:859:28: + + real(r8) :: es(pcols) + 1 +Warning: Unused variable ‘es’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:812:33: + + real(r8) :: faloutnr(pver) + 1 +Warning: Unused variable ‘faloutnr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:818:33: + + real(r8) :: faloutns(pver) + 1 +Warning: Unused variable ‘faloutns’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:811:32: + + real(r8) :: faloutr(pver) + 1 +Warning: Unused variable ‘faloutr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:817:32: + + real(r8) :: falouts(pver) + 1 +Warning: Unused variable ‘falouts’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:820:27: + + real(r8) :: faltndnr + 1 +Warning: Unused variable ‘faltndnr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:826:27: + + real(r8) :: faltndns + 1 +Warning: Unused variable ‘faltndns’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:819:26: + + real(r8) :: faltndr + 1 +Warning: Unused variable ‘faltndr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:825:26: + + real(r8) :: faltnds + 1 +Warning: Unused variable ‘faltnds’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:513:48: + + & npccnin, rndst,nacon, rhdfda, rhu00, fice, tlat, qvlat, qctend, & + 1 +Warning: Unused dummy argument ‘fice’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:804:28: + + real(r8) :: fnr(pver) + 1 +Warning: Unused variable ‘fnr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:810:28: + + real(r8) :: fns(pver) + 1 +Warning: Unused variable ‘fns’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:803:27: + + real(r8) :: fr(pver) + 1 +Warning: Unused variable ‘fr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:809:27: + + real(r8) :: fs(pver) + 1 +Warning: Unused variable ‘fs’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:933:35: + + real(r8) bbi, cci, ak, iciwc, rvi, riter + 1 +Warning: Unused variable ‘iciwc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:703:46: + + real(r8), dimension(pcols) :: icwc, calpha, cbeta, cbetah + 1 +Warning: Unused variable ‘icwc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:922:17: + + integer ii,kk, m, ind_aux, km, kp + 1 +Warning: Unused variable ‘ii’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:922:20: + + integer ii,kk, m, ind_aux, km, kp + 1 +Warning: Unused variable ‘kk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:922:40: + + integer ii,kk, m, ind_aux, km, kp + 1 +Warning: Unused variable ‘kp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:921:29: + + integer i,k,nstep,n, l + 1 +Warning: Unused variable ‘l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:508:37: + + subroutine mmicro_pcond ( lchnk, ncol, deltatin, tn, ttend, & + 1 +Warning: Unused dummy argument ‘lchnk’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:700:59: + + &, cwml, cwmi, lcldn, lcldo + 1 +Warning: Unused variable ‘lcldn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:700:66: + + &, cwml, cwmi, lcldn, lcldo + 1 +Warning: Unused variable ‘lcldo’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:525:30: + + & nbincontactdust, lprint, xlat, xlon, rhc) + 1 +Warning: Unused dummy argument ‘lprint’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:922:23: + + integer ii,kk, m, ind_aux, km, kp + 1 +Warning: Unused variable ‘m’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:726:28: + + real(r8) :: n0c(pver) + 1 +Warning: Unused variable ‘n0c’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:741:24: + + real(r8) :: nacnt + 1 +Warning: Unused variable ‘nacnt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:701:55: + + &, nctend_mixnuc, npccn + 1 +Warning: Unused variable ‘nctend_mixnuc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:512:26: + + & icecldf, cldo, pint, rpdel, zm, rate1ord_cw2pr_st, naai, & + 1 +Warning: Unused dummy argument ‘pint’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:972:55: + + real(r8) :: beta6, xs, nssoot, nsdust, taux, psc, Bh, vaux, aux, + 1 +Warning: Unused variable ‘psc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:711:69: + + real(r8) :: qtmp, dum, dum1, dum2, qcld + 1 +Warning: Unused variable ‘qcld’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:936:50: + + real(r8) Tk, deles, Aprpr, Bprpr, Cice, qi0, Crate, qidep + 1 +Warning: Unused variable ‘qi0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:936:64: + + real(r8) Tk, deles, Aprpr, Bprpr, Cice, qi0, Crate, qidep + 1 +Warning: Unused variable ‘qidep’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:856:34: + + real(r8) :: qsp(pcols,pver) + 1 +Warning: Unused variable ‘qsp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:857:36: + + real(r8) :: qsphy(pcols,pver) + 1 +Warning: Unused variable ‘qsphy’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:510:16: + + & qn, qtend, cwtend, qc, qi, nc, ni,fprcp,qrn,qsnw,nrn,nsnw, & + 1 +Warning: Unused dummy argument ‘qtend’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:704:64: + + &, cgamma, cgamah, rcgama + 1 +Warning: Unused variable ‘rcgama’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:525:47: + + & nbincontactdust, lprint, xlat, xlon, rhc) + 1 +Warning: Unused dummy argument ‘rhc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:513:35: + + & npccnin, rndst,nacon, rhdfda, rhu00, fice, tlat, qvlat, qctend, & + 1 +Warning: Unused dummy argument ‘rhdfda’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:513:42: + + & npccnin, rndst,nacon, rhdfda, rhu00, fice, tlat, qvlat, qctend, & + 1 +Warning: Unused dummy argument ‘rhu00’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:512:33: + + & icecldf, cldo, pint, rpdel, zm, rate1ord_cw2pr_st, naai, & + 1 +Warning: Unused dummy argument ‘rpdel’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:933:40: + + real(r8) bbi, cci, ak, iciwc, rvi, riter + 1 +Warning: Unused variable ‘rvi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:929:66: + + real(r8), dimension(nbincontactdust) :: ndfaer, nslip, slip + 1 +Warning: Unused variable ‘slip’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:964:24: + + real(r8) dmc,ssmc,dstrn + 1 +Warning: Unused variable ‘ssmc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:936:18: + + real(r8) Tk, deles, Aprpr, Bprpr, Cice, qi0, Crate, qidep + 1 +Warning: Unused variable ‘tk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:855:34: + + real(r8) :: tsp(pcols,pver) + 1 +Warning: Unused variable ‘tsp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:508:64: + + subroutine mmicro_pcond ( lchnk, ncol, deltatin, tn, ttend, & + 1 +Warning: Unused dummy argument ‘ttend’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:525:36: + + & nbincontactdust, lprint, xlat, xlon, rhc) + 1 +Warning: Unused dummy argument ‘xlat’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:525:42: + + & nbincontactdust, lprint, xlat, xlon, rhc) + 1 +Warning: Unused dummy argument ‘xlon’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:512:37: + + & icecldf, cldo, pint, rpdel, zm, rate1ord_cw2pr_st, naai, & + 1 +Warning: Unused dummy argument ‘zm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:584:0: + + subroutine pdf_spread (K, LM, PP, ALPHA, ALPHT_DIAG, FRLAND, rhc) + +Warning: ‘pdf_spread’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1237:0: + + subroutine cnvsrc( DT, ICEPARAM, SCLMFDFR, MASS, iMASS, PL, & + +Warning: ‘cnvsrc’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1317:0: + + subroutine PRECIP3( K,LM , DT , FRLAND , RHCR3 , QPl , QPi , & + +Warning: ‘precip3’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1773:0: + + subroutine MICRO_AA_BB_3(TEMP,PR,Q_SAT,AA,BB) + +Warning: ‘micro_aa_bb_3’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1797:0: + + function LDRADIUS3(PL,TE,QCL,NN) RESULT(RADIUS) + +Warning: ‘ldradius3’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1816:0: + + function ICE_FRACTION (TEMP) RESULT(ICEFRCT) + +Warning: ‘ice_fraction’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldmacro.F:1901:0: + + subroutine Bergeron_iter ( DTIME , PL , TE , QV , QILS , QICN , + +Warning: ‘bergeron_iter’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:209:28: + + real(r8) surften, arg, derf + 1 +Warning: Unused variable ‘arg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:209:34: + + real(r8) surften, arg, derf + 1 +Warning: Unused variable ‘derf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:211:39: + + character(len=16) :: eddy_scheme = ' ' + 1 +Warning: Unused variable ‘eddy_scheme’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:212:48: + + logical :: history_microphysics + 1 +Warning: Unused variable ‘history_microphysics’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:208:28: + + integer k, l, m, iaer + 1 +Warning: Unused variable ‘iaer’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:208:16: + + integer k, l, m, iaer + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:208:19: + + integer k, l, m, iaer + 1 +Warning: Unused variable ‘l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:208:22: + + integer k, l, m, iaer + 1 +Warning: Unused variable ‘m’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cldwat2m_micro.F:209:23: + + real(r8) surften, arg, derf + 1 +Warning: Unused variable ‘surften’ declared at (1) [-Wunused-variable] +[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg2_0.F90:775:21: + + real(r8) :: faltndc + 1 +Warning: Unused variable ‘faltndc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg2_0.F90:777:21: + + real(r8) :: faltndi + 1 +Warning: Unused variable ‘faltndi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg2_0.F90:776:22: + + real(r8) :: faltndnc + 1 +Warning: Unused variable ‘faltndnc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg2_0.F90:778:22: + + real(r8) :: faltndni + 1 +Warning: Unused variable ‘faltndni’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg2_0.F90:783:22: + + real(r8) :: faltndnr + 1 +Warning: Unused variable ‘faltndnr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg2_0.F90:785:22: + + real(r8) :: faltndns + 1 +Warning: Unused variable ‘faltndns’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg2_0.F90:780:23: + + real(r8) :: faltndqce + 1 +Warning: Unused variable ‘faltndqce’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg2_0.F90:779:23: + + real(r8) :: faltndqie + 1 +Warning: Unused variable ‘faltndqie’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg2_0.F90:782:21: + + real(r8) :: faltndr + 1 +Warning: Unused variable ‘faltndr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg2_0.F90:784:21: + + real(r8) :: faltnds + 1 +Warning: Unused variable ‘faltnds’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg2_0.F90:396:33: + + prer_evap, xlat, xlon, lprnt, iccn, aero_in, nlball) + 1 +Warning: Unused dummy argument ‘lprnt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg2_0.F90:739:26: + + real(r8) :: mi0l(mgncol) + 1 +Warning: Unused variable ‘mi0l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg2_0.F90:826:32: + + real(r8) :: irad, ifrac, tsfac + 1 +Warning: Unused variable ‘tsfac’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg2_0.F90:396:20: + + prer_evap, xlat, xlon, lprnt, iccn, aero_in, nlball) + 1 +Warning: Unused dummy argument ‘xlat’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg2_0.F90:396:26: + + prer_evap, xlat, xlon, lprnt, iccn, aero_in, nlball) + 1 +Warning: Unused dummy argument ‘xlon’ at (1) [-Wunused-dummy-argument] +[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg3_0.F90:996:21: + + real(r8) :: faltndc + 1 +Warning: Unused variable ‘faltndc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg3_0.F90:1011:21: + + real(r8) :: faltndg + 1 +Warning: Unused variable ‘faltndg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg3_0.F90:998:21: + + real(r8) :: faltndi + 1 +Warning: Unused variable ‘faltndi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg3_0.F90:997:22: + + real(r8) :: faltndnc + 1 +Warning: Unused variable ‘faltndnc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg3_0.F90:1012:22: + + real(r8) :: faltndng + 1 +Warning: Unused variable ‘faltndng’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg3_0.F90:999:22: + + real(r8) :: faltndni + 1 +Warning: Unused variable ‘faltndni’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg3_0.F90:1004:22: + + real(r8) :: faltndnr + 1 +Warning: Unused variable ‘faltndnr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg3_0.F90:1006:22: + + real(r8) :: faltndns + 1 +Warning: Unused variable ‘faltndns’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg3_0.F90:1001:23: + + real(r8) :: faltndqce + 1 +Warning: Unused variable ‘faltndqce’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg3_0.F90:1000:23: + + real(r8) :: faltndqie + 1 +Warning: Unused variable ‘faltndqie’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg3_0.F90:1003:21: + + real(r8) :: faltndr + 1 +Warning: Unused variable ‘faltndr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg3_0.F90:1005:21: + + real(r8) :: faltnds + 1 +Warning: Unused variable ‘faltnds’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg3_0.F90:497:33: + + prer_evap, xlat, xlon, lprnt, iccn, aero_in, nlball) + 1 +Warning: Unused dummy argument ‘lprnt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg3_0.F90:955:26: + + real(r8) :: mi0l(mgncol) + 1 +Warning: Unused variable ‘mi0l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg3_0.F90:497:20: + + prer_evap, xlat, xlon, lprnt, iccn, aero_in, nlball) + 1 +Warning: Unused dummy argument ‘xlat’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/micro_mg3_0.F90:497:26: + + prer_evap, xlat, xlon, lprnt, iccn, aero_in, nlball) + 1 +Warning: Unused dummy argument ‘xlon’ at (1) [-Wunused-dummy-argument] +[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp.F90:157:82: + + dudt, dvdt, dtdt, rdxzb, con_g, con_pi, con_cp, con_rd, con_rv, con_fvirt, & + 1 +Warning: Unused dummy argument ‘con_fvirt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp.F90:157:47: + + dudt, dvdt, dtdt, rdxzb, con_g, con_pi, con_cp, con_rd, con_rv, con_fvirt, & + 1 +Warning: Unused dummy argument ‘con_pi’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp.F90:157:25: + + dudt, dvdt, dtdt, rdxzb, con_g, con_pi, con_cp, con_rd, con_rv, con_fvirt, & + 1 +Warning: Unused dummy argument ‘dtdt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp.F90:157:13: + + dudt, dvdt, dtdt, rdxzb, con_g, con_pi, con_cp, con_rd, con_rv, con_fvirt, & + 1 +Warning: Unused dummy argument ‘dudt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp.F90:157:19: + + dudt, dvdt, dtdt, rdxzb, con_g, con_pi, con_cp, con_rd, con_rv, con_fvirt, & + 1 +Warning: Unused dummy argument ‘dvdt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp.F90:152:43: + + do_tofd, ldiag_ugwp, cdmbgwd, xlat, xlat_d, sinlat, coslat, area, & + 1 +Warning: Unused dummy argument ‘xlat’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp.F90:67:19: + + real :: dxsg + 1 +Warning: Unused variable ‘dxsg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp.F90:66:21: + + logical :: exists + 1 +Warning: Unused variable ‘exists’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp.F90:65:18: + + integer :: ios + 1 +Warning: Unused variable ‘ios’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp.F90:68:16: + + integer :: k + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o +[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90:86:65: + + subroutine GFS_suite_interstitial_1_run (im, levs, ntrac, dtf, dtp, slmsk, area, dxmin, dxinv, pgr, & + 1 +Warning: Unused dummy argument ‘dtf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90:86:70: + + subroutine GFS_suite_interstitial_1_run (im, levs, ntrac, dtf, dtp, slmsk, area, dxmin, dxinv, pgr, & + 1 +Warning: Unused dummy argument ‘dtp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90:159:85: + + subroutine GFS_suite_interstitial_2_run (im, levs, lssav, ldiag3d, lsidea, cplflx, flag_cice, shal_cnv, old_monin, mstrat, & + 1 +Warning: Unused dummy argument ‘cplflx’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90:462:95: + + subroutine GFS_suite_interstitial_3_run (im, levs, nn, cscnv, satmedmf, trans_trac, do_shoc, ltaerosol, ntrac, ntcw, & + 1 +Warning: Unused dummy argument ‘do_shoc’ at (1) [-Wunused-dummy-argument] +[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90:18:42: + + cldsa, mtopa, mbota, clouds1, cldtaulw, cldtausw, & + 1 +Warning: Unused dummy argument ‘clouds1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90:17:22: + + Coupling, scmpsw, im, lm, ltp, kt, kb, kd, raddt, aerodp, & + 1 +Warning: Unused dummy argument ‘coupling’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90:58:28: + + integer :: i, j, k, k1, itop, ibtc + 1 +Warning: Unused variable ‘k1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90:17:38: + + Coupling, scmpsw, im, lm, ltp, kt, kb, kd, raddt, aerodp, & + 1 +Warning: Unused dummy argument ‘lm’ at (1) [-Wunused-dummy-argument] +[ 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_v15p2_stochastics_cap.F90.o +[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90:391:18: + + iseed = mod(con_100*sqrt(Model%fhour*con_hr),1.0d9) + Model%seed0 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90:326:77: + + subroutine GFS_phys_time_vary_run (Data, Model, nthrds, first_time_step, errmsg, errflg) + 1 +Warning: Unused dummy argument ‘first_time_step’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90:348:47: + + real(kind=kind_phys) :: sec_zero, rsnow + 1 +Warning: Unused variable ‘rsnow’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90:347:72: + + integer :: i, j, k, iseed, iskip, ix, nb, nblks, kdt_rad, vegtyp + 1 +Warning: Unused variable ‘vegtyp’ declared at (1) [-Wunused-variable] +[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90:25:13: + + use physparam, only: ipsd0, ipsdlim, iaerflg + 1 +Warning: Unused module variable ‘iaerflg’ which has been explicitly imported at (1) [-Wunused-variable] +[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_stochastics_cap.F90.o +[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_nst.f:33:31: + + & ( im, hvap, cp, hfus, jcal, eps, epsm1, rvrdm1, rd, rhw0, & + 1 +Warning: Unused dummy argument ‘hfus’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_nst.f:167:9: + + use date_def, only: idate + 1 +Warning: Unused module variable ‘idate’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_nst.f:39:35: + + & nstf_name5, lprnt, ipr, & + 1 +Warning: Unused dummy argument ‘ipr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_nst.f:248:23: + + integer :: iw3jdn + 1 +Warning: Unused variable ‘iw3jdn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_nst.f:33:37: + + & ( im, hvap, cp, hfus, jcal, eps, epsm1, rvrdm1, rd, rhw0, & + 1 +Warning: Unused dummy argument ‘jcal’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_nst.f:220:18: + + integer :: k,i + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_nst.f:39:30: + + & nstf_name5, lprnt, ipr, & + 1 +Warning: Unused dummy argument ‘lprnt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_nst.f:34:15: + + & pi, sbc, ps, u1, v1, t1, q1, tref, cm, ch, & + 1 +Warning: Unused dummy argument ‘pi’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_nst.f:35:34: + + & prsl1, prslki, prsik1, prslk1, wet, xlon, sinlat, & + 1 +Warning: Unused dummy argument ‘prsik1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_nst.f:35:42: + + & prsl1, prslki, prsik1, prslk1, wet, xlon, sinlat, & + 1 +Warning: Unused dummy argument ‘prslk1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_nst.f:33:67: + + & ( im, hvap, cp, hfus, jcal, eps, epsm1, rvrdm1, rd, rhw0, & + 1 +Warning: Unused dummy argument ‘rhw0’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_nst.f:232:36: + + & xzts_old, ifd_old, tref_old, tskin_old, dt_cool_old,z_c_old + 1 +Warning: Unused variable ‘tref_old’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_nst.f:37:70: + + & sfcemis, dlwflx, sfcnsw, rain, timestep, kdt, solhr,xcosz, & + 1 +Warning: Unused dummy argument ‘xcosz’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_nst.f:780:33: + + & ( im, rlapse, wet, icy, oro, oro_uf, nstf_name1, & + 1 +Warning: Unused dummy argument ‘icy’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_nst.f:780:38: + + & ( im, rlapse, wet, icy, oro, oro_uf, nstf_name1, & + 1 +Warning: Unused dummy argument ‘oro’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_nst.f:780:46: + + & ( im, rlapse, wet, icy, oro, oro_uf, nstf_name1, & + 1 +Warning: Unused dummy argument ‘oro_uf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_nst.f:780:23: + + & ( im, rlapse, wet, icy, oro, oro_uf, nstf_name1, & + 1 +Warning: Unused dummy argument ‘rlapse’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_nst.f:782:22: + + & tsurf_ocn, tsfc_ocn, dtzm, errmsg, errflg & + 1 +Warning: Unused dummy argument ‘tsurf_ocn’ at (1) [-Wunused-dummy-argument] +[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90:740:72: + + elseif(Model%imp_physics == 8 .or. Model%imp_physics == 6) then ! Thompson / WSM6 cloud micrphysics scheme + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90:145:57: + + rhly, tvly,qstl, vvel, clw, ciw, prslk1, tem2da, & + 1 +Warning: Unused variable ‘ciw’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90:22:22: + + Tbd, Cldprop, Coupling, & + 1 +Warning: Unused dummy argument ‘cldprop’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90:145:52: + + rhly, tvly,qstl, vvel, clw, ciw, prslk1, tem2da, & + 1 +Warning: Unused variable ‘clw’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90:141:70: + + real(kind=kind_phys), dimension(size(Grid%xlon,1)) :: cvt1, cvb1, tem1d, tskn + 1 +Warning: Unused variable ‘cvb1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90:141:64: + + real(kind=kind_phys), dimension(size(Grid%xlon,1)) :: cvt1, cvb1, tem1d, tskn + 1 +Warning: Unused variable ‘cvt1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90:139:42: + + real(kind=kind_phys) :: es, qs, delt, tem0d + 1 +Warning: Unused variable ‘delt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90:144:45: + + htswc, htlwc, gcice, grain, grime, htsw0, htlw0, & + 1 +Warning: Unused variable ‘gcice’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90:144:52: + + htswc, htlwc, gcice, grain, grime, htsw0, htlw0, & + 1 +Warning: Unused variable ‘grain’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90:144:59: + + htswc, htlwc, gcice, grain, grime, htsw0, htlw0, & + 1 +Warning: Unused variable ‘grime’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90:144:73: + + htswc, htlwc, gcice, grain, grime, htsw0, htlw0, & + 1 +Warning: Unused variable ‘htlw0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90:144:38: + + htswc, htlwc, gcice, grain, grime, htsw0, htlw0, & + 1 +Warning: Unused variable ‘htlwc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90:144:66: + + htswc, htlwc, gcice, grain, grime, htsw0, htlw0, & + 1 +Warning: Unused variable ‘htsw0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90:144:31: + + htswc, htlwc, gcice, grain, grime, htsw0, htlw0, & + 1 +Warning: Unused variable ‘htswc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90:137:56: + + integer :: i, j, k, k1, k2, lsk, lv, n, itop, ibtc, LP1, lla, llb, lya, lyb + 1 +Warning: Unused variable ‘ibtc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90:137:50: + + integer :: i, j, k, k1, k2, lsk, lv, n, itop, ibtc, LP1, lla, llb, lya, lyb + 1 +Warning: Unused variable ‘itop’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90:137:41: + + integer :: i, j, k, k1, k2, lsk, lv, n, itop, ibtc, LP1, lla, llb, lya, lyb + 1 +Warning: Unused variable ‘lv’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90:145:47: + + rhly, tvly,qstl, vvel, clw, ciw, prslk1, tem2da, & + 1 +Warning: Unused variable ‘vvel’ declared at (1) [-Wunused-variable] +[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90:48:25: + + num_p3d, npdf3d, ntoz, iovr_sw, iovr_lw, isubc_sw, isubc_lw, & + 1 +Warning: Unused dummy argument ‘npdf3d’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90:47:70: + + si, levr, ictm, isol, ico2, iaer, ialb, iems, ntcw, num_p2d, & + 1 +Warning: Unused dummy argument ‘num_p2d’ at (1) [-Wunused-dummy-argument] +[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_physics_cap.F90.o +[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_time_vary_cap.F90.o +[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_physics_cap.F90.o +[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_time_vary_cap.F90.o +[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_radiation_cap.F90.o +[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_radiation_cap.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 +mpif.h:561:54: + +Warning: Unused variable ‘mpi_statuses_ignore’ declared at (1) [-Wunused-variable] +mpif.h:561:54: + +Warning: Unused variable ‘mpi_statuses_ignore’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/drifters/drifters_comm.F90:114:0: + + subroutine drifters_comm_set_data_bounds(self, xmin, ymin, xmax, ymax) + +Warning: ‘drifters_comm_set_data_bounds’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/drifters/drifters_comm.F90:127:0: + + subroutine drifters_comm_set_comp_bounds(self, xmin, ymin, xmax, ymax) + +Warning: ‘drifters_comm_set_comp_bounds’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_io_write.inc:983:27: + + rval_i = rval + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_io_write.inc:993:27: + + rval_i = rval + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_io_read.inc:791:65: + + bounds_name = mpp_file(unit)%Axis(j)%Att(i)%catt + 1 +Warning: CHARACTER expression will be truncated in assignment (128/1280) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_io_read.inc:1049:51: + + mpp_file(unit)%Var(nv)%pack=mpp_file(unit)%Var(nv)%Att(j)%fatt(1) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_io_read.inc:1054:75: + + checksum_char = mpp_file(unit)%Var(nv)%Att(j)%catt + 1 +Warning: CHARACTER expression will be truncated in assignment (64/1280) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp_io.F90:1048:61: + + integer :: mpp_io_stack_size=0, mpp_io_stack_hwm=0 + 1 +Warning: Unused PRIVATE module variable ‘mpp_io_stack_hwm’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_io_unstructured_write.inc:503:55: + + integer(INT_KIND) :: compute_size ! NULL() + 1 +Warning: Unused variable ‘io_domain’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_io_write.inc:624:22: + + integer :: istat + 1 +Warning: Unused variable ‘istat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_io_write.inc:612:78: + + subroutine mpp_write_meta_axis_unlimited(unit, axis, name, data, unlimited, units, longname) + 1 +Warning: Unused dummy argument ‘unlimited’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_io_write.inc:553:29: + + logical :: domain_exist + 1 +Warning: Unused variable ‘domain_exist’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_io_write.inc:554:42: + + type(domain2d), pointer :: io_domain => NULL() + 1 +Warning: Unused variable ‘io_domain’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_io_read.inc:320:48: + + integer :: error, i, j, istat, check_exist + 1 +Warning: Unused variable ‘check_exist’ declared at (1) [-Wunused-variable] +[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_cap.F90.o +[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_cap.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_read_2Ddecomp.h:145:25: + + integer :: i, error, is, ie, js, je, isg, ieg, jsg, jeg + 1 +Warning: Unused variable ‘error’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_io_connect.inc:219:51: + + integer :: comm + 1 +Warning: Unused variable ‘comm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_io_connect.inc:225:52: + + integer ::f_size, f_stat + 1 +Warning: Unused variable ‘f_size’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_io_connect.inc:225:60: + + integer ::f_size, f_stat + 1 +Warning: Unused variable ‘f_stat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_io_connect.inc:227:53: + + character(len=128) :: f_test + 1 +Warning: Unused variable ‘f_test’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_io_connect.inc:221:55: + + integer,dimension(:), allocatable :: glist(:) + 1 +Warning: Unused variable ‘glist’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_io_connect.inc:220:59: + + integer :: info, ierror + 1 +Warning: Unused variable ‘ierror’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_io_connect.inc:220:51: + + integer :: info, ierror + 1 +Warning: Unused variable ‘info’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_io_connect.inc:222:50: + + integer ::lena, lenb + 1 +Warning: Unused variable ‘lena’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_io_connect.inc:222:56: + + integer ::lena, lenb + 1 +Warning: Unused variable ‘lenb’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_io_connect.inc:218:51: + + integer*8 :: lenp + 1 +Warning: Unused variable ‘lenp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_io_misc.inc:221:27: + + integer :: unit,istat + 1 +Warning: Unused variable ‘istat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_io_misc.inc:51:45: + + logical :: opened + 1 +Warning: Unused variable ‘opened’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_io_misc.inc:49:47: + + integer :: unit_nml, io_status, iunit + 1 +Warning: Unused variable ‘unit_nml’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/include/mpp_io_util.inc:519:43: + + subroutine mpp_get_iospec( unit, iospec ) + 1 +Warning: Unused dummy argument ‘iospec’ at (1) [-Wunused-dummy-argument] +[ 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:1800:35: + + integer, parameter :: crtrh=0.70 + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘INTEGER(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_debug.F90:640:25: + + integer :: k, i, l + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_debug.F90:640:22: + + integer :: k, i, l + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_debug.F90:640:28: + + integer :: k, i, l + 1 +Warning: Unused variable ‘l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_debug.F90:614:25: + + integer :: k, i + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_debug.F90:614:22: + + integer :: k, i + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_debug.F90:590:22: + + integer :: i + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_debug.F90:552:22: + + integer :: i + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_debug.F90:47:57: + + Grid, Tbd, Cldprop, Radtend, Diag, Interstitial, & + 1 +Warning: Unused dummy argument ‘cldprop’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_debug.F90:84:36: + + integer :: impi, iomp, ierr, n + 1 +Warning: Unused variable ‘ierr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_debug.F90:47:86: + + Grid, Tbd, Cldprop, Radtend, Diag, Interstitial, & + 1 +Warning: Unused dummy argument ‘interstitial’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_debug.F90:755:61: + + Grid, Tbd, Cldprop, Radtend, Diag, Interstitial, & + 1 +Warning: Unused dummy argument ‘cldprop’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_debug.F90:754:90: + + subroutine GFS_interstitialtoscreen_run (Model, Statein, Stateout, Sfcprop, Coupling, & + 1 +Warning: Unused dummy argument ‘coupling’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_debug.F90:755:76: + + Grid, Tbd, Cldprop, Radtend, Diag, Interstitial, & + 1 +Warning: Unused dummy argument ‘diag’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_debug.F90:755:47: + + Grid, Tbd, Cldprop, Radtend, Diag, Interstitial, & + 1 +Warning: Unused dummy argument ‘grid’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_debug.F90:755:70: + + Grid, Tbd, Cldprop, Radtend, Diag, Interstitial, & + 1 +Warning: Unused dummy argument ‘radtend’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_debug.F90:754:80: + + subroutine GFS_interstitialtoscreen_run (Model, Statein, Stateout, Sfcprop, Coupling, & + 1 +Warning: Unused dummy argument ‘sfcprop’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_debug.F90:754:61: + + subroutine GFS_interstitialtoscreen_run (Model, Statein, Stateout, Sfcprop, Coupling, & + 1 +Warning: Unused dummy argument ‘statein’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_debug.F90:754:71: + + subroutine GFS_interstitialtoscreen_run (Model, Statein, Stateout, Sfcprop, Coupling, & + 1 +Warning: Unused dummy argument ‘stateout’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/GFS_debug.F90:755:52: + + Grid, Tbd, Cldprop, Radtend, Diag, Interstitial, & + 1 +Warning: Unused dummy argument ‘tbd’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:3954:19: + + ( IM , IJSDIM, KMAX , & !DD dimensions + 1 +Warning: Unused dummy argument ‘im’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:3862:26: + + ( IM , IJSDIM, KMAX , NTR , & !DD dimensions + 1 +Warning: Unused dummy argument ‘im’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:3807:26: + + ( IM , IJSDIM, KMAX , NTR , & !DD dimensions + 1 +Warning: Unused dummy argument ‘im’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:3757:26: + + ( IM , IJSDIM, KMAX , NTR , & !DD dimensions + 1 +Warning: Unused dummy argument ‘im’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:3655:31: + + INTEGER I, K, LT, TP, CTP + 1 +Warning: Unused variable ‘tp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:3183:46: + + WMX, HMX, DDWMX, DDHMX, dp_above, dp_below, fsigma, & + 1 +Warning: Unused variable ‘ddhmx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:3183:39: + + WMX, HMX, DDWMX, DDHMX, dp_above, dp_below, fsigma, & + 1 +Warning: Unused variable ‘ddwmx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:3091:30: + + sigmad, do_aw , do_awdd, flx_form, & !DDsigma input + 1 +Warning: Unused dummy argument ‘do_aw’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:3183:30: + + WMX, HMX, DDWMX, DDHMX, dp_above, dp_below, fsigma, & + 1 +Warning: Unused variable ‘hmx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:3190:21: + + integer ij, i, k, kp1, n + 1 +Warning: Unused variable ‘ij’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:3081:19: + + ( IM , IJSDIM, KMAX , NTR , ntrq, & !DD dimensions + 1 +Warning: Unused dummy argument ‘im’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:3183:22: + + WMX, HMX, DDWMX, DDHMX, dp_above, dp_below, fsigma, & + 1 +Warning: Unused variable ‘wmx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:3010:19: + + ( IM , IJSDIM, KMAX , & !DD dimensions + 1 +Warning: Unused dummy argument ‘im’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:2923:41: + + GTQLCI, GTQICI, GTM2CI, GTM3CI, wrk, wrk1 + 1 +Warning: Unused variable ‘gtm2ci’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:2923:49: + + GTQLCI, GTQICI, GTM2CI, GTM3CI, wrk, wrk1 + 1 +Warning: Unused variable ‘gtm3ci’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:2886:19: + + ( IM , IJSDIM, KMAX , NTR, ntrq, & !DD dimensions + 1 +Warning: Unused dummy argument ‘im’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:2920:47: + + REAL(r8) SBH0, SBQ0, SBL0, SBI0, SBC0, SBS0, & + 1 +Warning: Unused variable ‘sbc0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:2921:47: + + SBH1, SBQ1, SBL1, SBI1, SBC1, SBS1, FX1, & + 1 +Warning: Unused variable ‘sbc1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:2920:54: + + REAL(r8) SBH0, SBQ0, SBL0, SBI0, SBC0, SBS0, & + 1 +Warning: Unused variable ‘sbs0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:2921:54: + + SBH1, SBQ1, SBL1, SBI1, SBC1, SBS1, FX1, & + 1 +Warning: Unused variable ‘sbs1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:2853:32: + + integer I, K, CTP, kk,n + 1 +Warning: Unused variable ‘kk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:2750:26: + + ( IM , IJSDIM, KMAX , & !DD dimensions + 1 +Warning: Unused dummy argument ‘im’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:2033:28: + + KB , CTP , ISTS , IENS, & ! input + 1 +Warning: Unused dummy argument ‘ctp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:2035:51: + + gclm, gcim , gctrm , lprnt, ipr ) + 1 +Warning: Unused dummy argument ‘ipr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:2035:46: + + gclm, gcim , gctrm , lprnt, ipr ) + 1 +Warning: Unused dummy argument ‘lprnt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:2152:21: + + REAL(r8) :: PB = 1.0_r8 + 1 +Warning: Unused variable ‘pb’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:2174:20: + + REAL(r8) T ! temperature + 1 +Warning: Unused variable ‘t’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:2132:56: + + PRECR, GTPRIZ, DELZL, GCCT, DCT, WCVX, PRCZH, wrk + 1 +Warning: Unused variable ‘wcvx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:2172:20: + + REAL(r8) Z ! altitude + 1 +Warning: Unused variable ‘z’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:2173:21: + + REAL(r8) ZH ! scale height + 1 +Warning: Unused variable ‘zh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:1793:28: + + lprnt, ipr, & + 1 +Warning: Unused dummy argument ‘ipr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:1793:22: + + lprnt, ipr, & + 1 +Warning: Unused dummy argument ‘lprnt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:861:40: + + REAL(r8) DELZ, BUOY, DELWC, DELER + 1 +Warning: Unused variable ‘deler’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:861:20: + + REAL(r8) DELZ, BUOY, DELWC, DELER + 1 +Warning: Unused variable ‘delz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:868:22: + + REAL(r8) GDCLDX, GDMU2X, GDMU3X + 1 +Warning: Unused variable ‘gdcldx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:868:30: + + REAL(r8) GDCLDX, GDMU2X, GDMU3X + 1 +Warning: Unused variable ‘gdmu2x’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:868:38: + + REAL(r8) GDCLDX, GDMU2X, GDMU3X + 1 +Warning: Unused variable ‘gdmu3x’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:943:53: + + INTEGER :: KBMX, I, K, CTP, ierr, n, kp1, km1, kk, kbi, l, l1 + 1 +Warning: Unused variable ‘ierr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:728:59: + + DELTA , DELTI , ISTS , IENS, mype,& ! input + 1 +Warning: Unused dummy argument ‘mype’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:294:48: + + otspt , lat , kdt , & + 1 +Warning: Unused dummy argument ‘kdt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:294:38: + + otspt , lat , kdt , & + 1 +Warning: Unused dummy argument ‘lat’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:3547:0: + + SUBROUTINE CUMCLD & !! cloudiness + +Warning: ‘cumcld’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:3806:0: + + SUBROUTINE CUMSBR & !! Tracer Subsidence + +Warning: ‘cumsbr’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:3953:0: + + SUBROUTINE CUMFXR1 & ! Tracer mass fixer + +Warning: ‘cumfxr1’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv.F90:4038:0: + + SUBROUTINE CUMCHK & ! check range of output values + +Warning: ‘cumchk’ defined but not used [-Wunused-function] +[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90:31:55: + + gt0, gq0, save_t, save_q, prsi, cldfrac, subcldfrac, & + 1 +Warning: Unused dummy argument ‘cldfrac’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90:29:58: + + subroutine cs_conv_aw_adj_run(im, levs, do_cscnv, do_aw, do_shoc, & + 1 +Warning: Unused dummy argument ‘do_aw’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90:29:51: + + subroutine cs_conv_aw_adj_run(im, levs, do_cscnv, do_aw, do_shoc, & + 1 +Warning: Unused dummy argument ‘do_cscnv’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90:30:27: + + ntrac, ncld, ntcw, ntclamt, nncl, con_g, sigmafrac, & + 1 +Warning: Unused dummy argument ‘ncld’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90:30:42: + + ntrac, ncld, ntcw, ntclamt, nncl, con_g, sigmafrac, & + 1 +Warning: Unused dummy argument ‘ntclamt’ at (1) [-Wunused-dummy-argument] +[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:88:38: + + integer, parameter :: ichoice=0 ! 0 2 5 13 8 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:90:40: + + integer, parameter :: ichoicem=13 ! 0 2 5 13 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:91:40: + + integer, parameter :: ichoice_s=3 ! 0 1 2 3 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:427:3: + + 123 format(1x,i2,1x,2(1x,f8.0),1x,2(1x,f8.3),3(1x,e13.5)) + 1 +Warning: Label 123 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:875:4: + + 100 continue + 1 +Warning: Label 100 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:150:79: + + real(kind=kind_phys), dimension (im) :: tau_ecmwf,edt,edtm,edtd,ter11,aa0,xlandi + 1 +Warning: Unused variable ‘aa0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:179:71: + + real(kind=kind_phys) :: clwtot,clwtot1,excess,tcrit,tscl_kf,dp,dq,sub_spread,subcenter + 1 +Warning: Unused variable ‘dq’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:180:37: + + real(kind=kind_phys) :: dsubclw,dsubclws,dsubclwm,dtime_max,ztm,ztq,hfm,qfm,rkbcon,rktop + 1 +Warning: Unused variable ‘dsubclw’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:180:55: + + real(kind=kind_phys) :: dsubclw,dsubclws,dsubclwm,dtime_max,ztm,ztq,hfm,qfm,rkbcon,rktop + 1 +Warning: Unused variable ‘dsubclwm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:180:46: + + real(kind=kind_phys) :: dsubclw,dsubclws,dsubclwm,dtime_max,ztm,ztq,hfm,qfm,rkbcon,rktop + 1 +Warning: Unused variable ‘dsubclws’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:93:33: + + real(kind=kind_phys) :: dts,fpi,fp + 1 +Warning: Unused variable ‘dts’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:179:51: + + real(kind=kind_phys) :: clwtot,clwtot1,excess,tcrit,tscl_kf,dp,dq,sub_spread,subcenter + 1 +Warning: Unused variable ‘excess’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:93:40: + + real(kind=kind_phys) :: dts,fpi,fp + 1 +Warning: Unused variable ‘fp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:93:37: + + real(kind=kind_phys) :: dts,fpi,fp + 1 +Warning: Unused variable ‘fpi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:151:68: + + real(kind=kind_phys), dimension (im) :: pret,prets,pretm,hexec + 1 +Warning: Unused variable ‘hexec’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:160:19: + + integer :: ibegc,iendc,jbegc,jendc,kstop + 1 +Warning: Unused variable ‘ibegc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:159:19: + + integer :: ibegh,iendh,jbegh,jendh + 1 +Warning: Unused variable ‘ibegh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:176:26: + + integer :: i,j,k,icldck,ipr,jpr,jpr_deep,ipr_deep + 1 +Warning: Unused variable ‘icldck’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:160:25: + + integer :: ibegc,iendc,jbegc,jendc,kstop + 1 +Warning: Unused variable ‘iendc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:159:25: + + integer :: ibegh,iendh,jbegh,jendh + 1 +Warning: Unused variable ‘iendh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:177:29: + + integer :: itf,jtf,ktf,iss,jss,nbegin,nend + 1 +Warning: Unused variable ‘iss’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:158:33: + + integer :: iens,ibeg,iend,jbeg,jend,n + 1 +Warning: Unused variable ‘jbeg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:160:31: + + integer :: ibegc,iendc,jbegc,jendc,kstop + 1 +Warning: Unused variable ‘jbegc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:159:31: + + integer :: ibegh,iendh,jbegh,jendh + 1 +Warning: Unused variable ‘jbegh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:158:38: + + integer :: iens,ibeg,iend,jbeg,jend,n + 1 +Warning: Unused variable ‘jend’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:160:37: + + integer :: ibegc,iendc,jbegc,jendc,kstop + 1 +Warning: Unused variable ‘jendc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:159:37: + + integer :: ibegh,iendh,jbegh,jendh + 1 +Warning: Unused variable ‘jendh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:177:33: + + integer :: itf,jtf,ktf,iss,jss,nbegin,nend + 1 +Warning: Unused variable ‘jss’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:140:40: + + integer, dimension(im) :: k22_shallow,kbcon_shallow,ktop_shallow + 1 +Warning: Unused variable ‘k22_shallow’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:140:54: + + integer, dimension(im) :: k22_shallow,kbcon_shallow,ktop_shallow + 1 +Warning: Unused variable ‘kbcon_shallow’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:140:67: + + integer, dimension(im) :: k22_shallow,kbcon_shallow,ktop_shallow + 1 +Warning: Unused variable ‘ktop_shallow’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:158:40: + + integer :: iens,ibeg,iend,jbeg,jend,n + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:162:52: + + real(kind=kind_phys) :: pten,pqen,paph,zrho,pahfs,pqhfl,zkhvfl,pgeoh + 1 +Warning: Unused variable ‘pahfs’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:162:41: + + real(kind=kind_phys) :: pten,pqen,paph,zrho,pahfs,pqhfl,zkhvfl,pgeoh + 1 +Warning: Unused variable ‘paph’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:162:71: + + real(kind=kind_phys) :: pten,pqen,paph,zrho,pahfs,pqhfl,zkhvfl,pgeoh + 1 +Warning: Unused variable ‘pgeoh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:144:64: + + real(kind=kind_phys), dimension (im,km) :: dhdt,zu,zus,zd,phf,zum,zdm,outum,outvm + 1 +Warning: Unused variable ‘phf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:143:65: + + real(kind=kind_phys), dimension (im,km) :: outt,outq,outqc,phh,subm,cupclw,cupclws + 1 +Warning: Unused variable ‘phh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:162:36: + + real(kind=kind_phys) :: pten,pqen,paph,zrho,pahfs,pqhfl,zkhvfl,pgeoh + 1 +Warning: Unused variable ‘pqen’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:162:58: + + real(kind=kind_phys) :: pten,pqen,paph,zrho,pahfs,pqhfl,zkhvfl,pgeoh + 1 +Warning: Unused variable ‘pqhfl’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:162:31: + + real(kind=kind_phys) :: pten,pqen,paph,zrho,pahfs,pqhfl,zkhvfl,pgeoh + 1 +Warning: Unused variable ‘pten’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:180:88: + + real(kind=kind_phys) :: dsubclw,dsubclws,dsubclwm,dtime_max,ztm,ztq,hfm,qfm,rkbcon,rktop + 1 +Warning: Unused variable ‘rkbcon’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:180:94: + + real(kind=kind_phys) :: dsubclw,dsubclws,dsubclwm,dtime_max,ztm,ztq,hfm,qfm,rkbcon,rktop + 1 +Warning: Unused variable ‘rktop’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:179:82: + + real(kind=kind_phys) :: clwtot,clwtot1,excess,tcrit,tscl_kf,dp,dq,sub_spread,subcenter + 1 +Warning: Unused variable ‘sub_spread’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:146:70: + + real(kind=kind_phys), dimension (im,km) :: outtm,outqm,outqcm,submm,cupclwm + 1 +Warning: Unused variable ‘submm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:179:65: + + real(kind=kind_phys) :: clwtot,clwtot1,excess,tcrit,tscl_kf,dp,dq,sub_spread,subcenter + 1 +Warning: Unused variable ‘tscl_kf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:172:52: + + real(kind=kind_phys), dimension (im) :: ccn,z1,psur,cuten,cutens,cutenm + 1 +Warning: Unused variable ‘z1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:148:58: + + real(kind=kind_phys), dimension (im,km) :: hco,hcdo,zdo,zdd,hcom,hcdom,zdom + 1 +Warning: Unused variable ‘zdo’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:148:78: + + real(kind=kind_phys), dimension (im,km) :: hco,hcdo,zdo,zdd,hcom,hcdom,zdom + 1 +Warning: Unused variable ‘zdom’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:162:65: + + real(kind=kind_phys) :: pten,pqen,paph,zrho,pahfs,pqhfl,zkhvfl,pgeoh + 1 +Warning: Unused variable ‘zkhvfl’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_gf_driver.F90:162:46: + + real(kind=kind_phys) :: pten,pqen,paph,zrho,pahfs,pqhfl,zkhvfl,pgeoh + 1 +Warning: Unused variable ‘zrho’ declared at (1) [-Wunused-variable] +[ 35%] 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 +[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1544:27: + + zcbase(jl) = paph(jl,ik) + zdp + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1765:27: + + zcbase(jl) = paph(jl,ik) + zdp + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3625:37: + + & (klon, klev, klevm1, kk, pten,& + 1 +Warning: Unused dummy argument ‘klevm1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3665:37: + + integer jl,kk,klev,klon,klevp1,klevm1 + 1 +Warning: Unused variable ‘klevp1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3626:35: + + & pqen, pqsen, puen, pven, pverv,& + 1 +Warning: Unused dummy argument ‘puen’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3629:34: + + & pqu, plu, puu, pvu, pmfus,& + 1 +Warning: Unused dummy argument ‘puu’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3626:44: + + & pqen, pqsen, puen, pven, pverv,& + 1 +Warning: Unused dummy argument ‘pven’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3629:43: + + & pqu, plu, puu, pvu, pmfus,& + 1 +Warning: Unused dummy argument ‘pvu’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3533:19: + + integer isum,kcall,kk + 1 +Warning: Unused variable ‘isum’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3532:20: + + integer jl,jk + 1 +Warning: Unused variable ‘jk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3343:65: + + logical , dimension(:,:) , allocatable :: llcumask , llcumbas + 1 +Warning: Unused variable ‘llcumbas’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3338:28: + + real(kind=kind_phys) zzp , zmfa , zerate , zposi + 1 +Warning: Unused variable ‘zzp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3219:57: + + subroutine cududvn(klon,klev,ktopm2,ktype,kcbot,kctop,ldcum, & + 1 +Warning: Unused dummy argument ‘kctop’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3239:39: + + real(kind=kind_phys) zzp, zdtdt + 1 +Warning: Unused variable ‘zdtdt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3220:25: + + ztmst,paph,puen,pven,pmfu,pmfd,puu,pud,pvu,pvd,ptenu, & + 1 +Warning: Unused dummy argument ‘ztmst’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3158:20: + + integer jk , ik , jl + 1 +Warning: Unused variable ‘ik’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3135:46: + + subroutine cudtdqn(klon,klev,ktopm2,kctop,kdtop,ldcum, & + 1 +Warning: Unused dummy argument ‘kctop’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3135:52: + + subroutine cudtdqn(klon,klev,ktopm2,kctop,kdtop,ldcum, & + 1 +Warning: Unused dummy argument ‘kdtop’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3136:27: + + lddraf,ztmst,paph,pgeoh,pgeo,pten,ptenh,pqen, & + 1 +Warning: Unused dummy argument ‘lddraf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3136:49: + + lddraf,ztmst,paph,pgeoh,pgeo,pten,ptenh,pqen, & + 1 +Warning: Unused dummy argument ‘pgeo’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3136:44: + + lddraf,ztmst,paph,pgeoh,pgeo,pten,ptenh,pqen, & + 1 +Warning: Unused dummy argument ‘pgeoh’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3137:55: + + pqenh,pqsen,plglac,plude,pmfu,pmfd,pmfus,pmfds, & + 1 +Warning: Unused dummy argument ‘pmfd’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3137:50: + + pqenh,pqsen,plglac,plude,pmfu,pmfd,pmfus,pmfds, & + 1 +Warning: Unused dummy argument ‘pmfu’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3136:65: + + lddraf,ztmst,paph,pgeoh,pgeo,pten,ptenh,pqen, & + 1 +Warning: Unused dummy argument ‘pqen’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3137:26: + + pqenh,pqsen,plglac,plude,pmfu,pmfd,pmfus,pmfds, & + 1 +Warning: Unused dummy argument ‘pqenh’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3137:32: + + pqenh,pqsen,plglac,plude,pmfu,pmfd,pmfus,pmfds, & + 1 +Warning: Unused dummy argument ‘pqsen’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3136:60: + + lddraf,ztmst,paph,pgeoh,pgeo,pten,ptenh,pqen, & + 1 +Warning: Unused dummy argument ‘ptenh’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3136:33: + + lddraf,ztmst,paph,pgeoh,pgeo,pten,ptenh,pqen, & + 1 +Warning: Unused dummy argument ‘ztmst’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:3159:39: + + real(kind=kind_phys) zalv , zzp + 1 +Warning: Unused variable ‘zzp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:2919:26: + + integer is,ik,icall,ike,ikb + 1 +Warning: Unused variable ‘icall’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:2919:30: + + integer is,ik,icall,ike,ikb + 1 +Warning: Unused variable ‘ike’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:2919:17: + + integer is,ik,icall,ike,ikb + 1 +Warning: Unused variable ‘is’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:2679:30: + + integer is,ik,icall,ike, itopde(klon) + 1 +Warning: Unused variable ‘ike’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:2676:19: + + logical llo1 + 1 +Warning: Unused variable ‘llo1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:2587:34: + + & , ptd, pqd, pud, pvd, pmfu & + 1 +Warning: Unused dummy argument ‘pud’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:2585:35: + + & , ptenh, pqenh, puen, pven & + 1 +Warning: Unused dummy argument ‘puen’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:2587:44: + + & , ptd, pqd, pud, pvd, pmfu & + 1 +Warning: Unused dummy argument ‘pvd’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:2585:45: + + & , ptenh, pqenh, puen, pven & + 1 +Warning: Unused dummy argument ‘pven’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:2681:69: + + real(kind=kind_phys) zmfdsk,zmfdqk,zbuo,zrain,zbuoyz,zmfduk,zmfdvk + 1 +Warning: Unused variable ‘zmfduk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:2681:76: + + real(kind=kind_phys) zmfdsk,zmfdqk,zbuo,zrain,zbuoyz,zmfduk,zmfdvk + 1 +Warning: Unused variable ‘zmfdvk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:2356:35: + + & kcbot, kctop, lndj, ldcum, & + 1 +Warning: Unused dummy argument ‘lndj’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:2359:54: + + & pgeoh, paph, ptu, pqu, plu,& + 1 +Warning: Unused dummy argument ‘plu’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:2361:34: + + & ptd, pqd, pud, pvd, & + 1 +Warning: Unused dummy argument ‘pud’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:2357:35: + + & ptenh, pqenh, puen, pven, & + 1 +Warning: Unused dummy argument ‘puen’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:2360:14: + + & puu, pvu, pmfub, prfl, & + 1 +Warning: Unused dummy argument ‘puu’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:2361:44: + + & ptd, pqd, pud, pvd, & + 1 +Warning: Unused dummy argument ‘pvd’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:2357:45: + + & ptenh, pqenh, puen, pven, & + 1 +Warning: Unused dummy argument ‘pven’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:2360:24: + + & puu, pvu, pmfub, prfl, & + 1 +Warning: Unused dummy argument ‘pvu’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1979:47: + + real(kind=kind_phys) atop1,atop2,abot + 1 +Warning: Unused variable ‘abot’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1979:36: + + real(kind=kind_phys) atop1,atop2,abot + 1 +Warning: Unused variable ‘atop1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1979:42: + + real(kind=kind_phys) atop1,atop2,abot + 1 +Warning: Unused variable ‘atop2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1977:56: + + real(kind=kind_phys) zrnew,zz,zdmfeu,zdmfdu,dp + 1 +Warning: Unused variable ‘dp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1956:49: + + real(kind=kind_phys) eta(klon),dz(klon) + 1 +Warning: Unused variable ‘dz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1956:40: + + real(kind=kind_phys) eta(klon),dz(klon) + 1 +Warning: Unused variable ‘eta’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1970:23: + + integer ikb,icum,itopm2,ik,icall,is,kcum,jlm,jll + 1 +Warning: Unused variable ‘icum’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1970:30: + + integer ikb,icum,itopm2,ik,icall,is,kcum,jlm,jll + 1 +Warning: Unused variable ‘itopm2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1858:45: + + & kcbot, kctop, kctop0, kcum, ztmst,& + 1 +Warning: Unused dummy argument ‘kcum’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1854:37: + + & pqte, pverv, klwmin, ldcum, phcbase,& + 1 +Warning: Unused dummy argument ‘klwmin’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1963:19: + + logical llo2,llo3, llo1(klon) + 1 +Warning: Unused variable ‘llo2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1854:58: + + & pqte, pverv, klwmin, ldcum, phcbase,& + 1 +Warning: Unused dummy argument ‘phcbase’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1859:17: + + & pqsenh, plglac, lndj, wup, wbase, kdpl, pmfude_rate) + 1 +Warning: Unused dummy argument ‘pqsenh’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1854:15: + + & pqte, pverv, klwmin, ldcum, phcbase,& + 1 +Warning: Unused dummy argument ‘pqte’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1977:53: + + real(kind=kind_phys) zrnew,zz,zdmfeu,zdmfdu,dp + 1 +Warning: Unused variable ‘zdmfdu’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1977:46: + + real(kind=kind_phys) zrnew,zz,zdmfeu,zdmfdu,dp + 1 +Warning: Unused variable ‘zdmfeu’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1947:26: + + & zmfuu(klon), zmfuv(klon),& + 1 +Warning: Unused variable ‘zmfuu’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1947:50: + + & zmfuu(klon), zmfuv(klon),& + 1 +Warning: Unused variable ‘zmfuv’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1953:72: + + real(kind=kind_phys) wbase(klon), zodetr(klon,klev) + 1 +Warning: Unused variable ‘zodetr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1948:27: + + & zpbase(klon), zqold(klon) + 1 +Warning: Unused variable ‘zpbase’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1977:39: + + real(kind=kind_phys) zrnew,zz,zdmfeu,zdmfdu,dp + 1 +Warning: Unused variable ‘zz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1399:44: + + real(kind=kind_phys) fscale,crirh1,pp + 1 +Warning: Unused variable ‘crirh1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1320:25: + + & pten, lndj, cutu, cuqu, culab,& + 1 +Warning: Unused dummy argument ‘lndj’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1393:47: + + real(kind=kind_phys) plude(klon,klev) + 1 +Warning: Unused variable ‘plude’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1399:47: + + real(kind=kind_phys) fscale,crirh1,pp + 1 +Warning: Unused variable ‘pp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1318:37: + + & ptenh, pqenh, pqsenh, pgeoh, paph,& + 1 +Warning: Unused dummy argument ‘pqsenh’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1398:39: + + real(kind=kind_phys) zz,zdken,zdq + 1 +Warning: Unused variable ‘zdken’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1405:80: + + real(kind=kind_phys) zqsu,zcor,zdp,zesdp,zalfaw,zfacw,zfaci,zfac,zdsdp,zdqsdt,zdtdp + 1 +Warning: Unused variable ‘zdsdp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1398:33: + + real(kind=kind_phys) zz,zdken,zdq + 1 +Warning: Unused variable ‘zz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1196:37: + + & pmfdq, pdmfup, pdmfdp, pdpmel, plu,& + 1 +Warning: Unused dummy argument ‘pdmfdp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1196:27: + + & pmfdq, pdmfup, pdmfdp, pdpmel, plu,& + 1 +Warning: Unused dummy argument ‘pdmfup’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1196:47: + + & pmfdq, pdmfup, pdmfdp, pdpmel, plu,& + 1 +Warning: Unused dummy argument ‘pdpmel’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1197:16: + + & plude, klab) + 1 +Warning: Unused dummy argument ‘plude’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1195:25: + + & pmfu, pmfd, pmfus, pmfds, pmfuq,& + 1 +Warning: Unused dummy argument ‘pmfd’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1196:16: + + & pmfdq, pdmfup, pdmfdp, pdpmel, plu,& + 1 +Warning: Unused dummy argument ‘pmfdq’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1195:46: + + & pmfu, pmfd, pmfus, pmfds, pmfuq,& + 1 +Warning: Unused dummy argument ‘pmfds’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1195:15: + + & pmfu, pmfd, pmfus, pmfds, pmfuq,& + 1 +Warning: Unused dummy argument ‘pmfu’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1195:56: + + & pmfu, pmfd, pmfus, pmfds, pmfuq,& + 1 +Warning: Unused dummy argument ‘pmfuq’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:1195:36: + + & pmfu, pmfd, pmfus, pmfds, pmfuq,& + 1 +Warning: Unused dummy argument ‘pmfus’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:490:37: + + real(kind=kind_phys) zalfaw,zalv,zqalv,zc5ldcp,zc4les,zhsat,zgam,zzz,zhhat + 1 +Warning: Unused variable ‘zalfaw’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:490:42: + + real(kind=kind_phys) zalfaw,zalv,zqalv,zc5ldcp,zc4les,zhsat,zgam,zzz,zhhat + 1 +Warning: Unused variable ‘zalv’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:490:63: + + real(kind=kind_phys) zalfaw,zalv,zqalv,zc5ldcp,zc4les,zhsat,zgam,zzz,zhhat + 1 +Warning: Unused variable ‘zc4les’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:490:56: + + real(kind=kind_phys) zalfaw,zalv,zqalv,zc5ldcp,zc4les,zhsat,zgam,zzz,zhhat + 1 +Warning: Unused variable ‘zc5ldcp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:471:66: + + real(kind=kind_phys) wup(klon), zdqcv(klon) + 1 +Warning: Unused variable ‘zdqcv’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:490:74: + + real(kind=kind_phys) zalfaw,zalv,zqalv,zc5ldcp,zc4les,zhsat,zgam,zzz,zhhat + 1 +Warning: Unused variable ‘zgam’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:490:84: + + real(kind=kind_phys) zalfaw,zalv,zqalv,zc5ldcp,zc4les,zhsat,zgam,zzz,zhhat + 1 +Warning: Unused variable ‘zhhat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:490:69: + + real(kind=kind_phys) zalfaw,zalv,zqalv,zc5ldcp,zc4les,zhsat,zgam,zzz,zhhat + 1 +Warning: Unused variable ‘zhsat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:479:43: + + real(kind=kind_phys) zmfuvb(klon),zsum12(klon),zsum22(klon) + 1 +Warning: Unused variable ‘zmfuvb’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:490:48: + + real(kind=kind_phys) zalfaw,zalv,zqalv,zc5ldcp,zc4les,zhsat,zgam,zzz,zhhat + 1 +Warning: Unused variable ‘zqalv’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:491:41: + + real(kind=kind_phys) zpbmpt,zro,zdz,zdp,zeps,zfac,wspeed + 1 +Warning: Unused variable ‘zro’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:465:41: + + real(kind=kind_phys) zsfl(klon), zdpmel(klon,klev),& + 1 +Warning: Unused variable ‘zsfl’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:490:78: + + real(kind=kind_phys) zalfaw,zalv,zqalv,zc5ldcp,zc4les,zhsat,zgam,zzz,zhhat + 1 +Warning: Unused variable ‘zzz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:197:15: + + integer i,j,k,k1,n,km1 + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:196:51: + + real(kind=kind_phys) ztmst,fliq,fice,ztc,zalf,tt + 1 +Warning: Unused variable ‘zalf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:196:46: + + real(kind=kind_phys) ztmst,fliq,fice,ztc,zalf,tt + 1 +Warning: Unused variable ‘ztc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cu_ntiedtke.F90:198:32: + + real(kind=kind_phys) ztpp1 + 1 +Warning: Unused variable ‘ztpp1’ declared at (1) [-Wunused-variable] +[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o +[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o +[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/drag_suite.F90:201:41: + + & THETA,SIGMA,GAMMA,ELVMAX, & + 1 +Warning: Unused dummy argument ‘elvmax’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/drag_suite.F90:201:34: + + & THETA,SIGMA,GAMMA,ELVMAX, & + 1 +Warning: Unused dummy argument ‘gamma’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/drag_suite.F90:209:27: + + & lprnt, ipr, rdxzb, dx, gwd_opt, errmsg, errflg ) + 1 +Warning: Unused dummy argument ‘ipr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/drag_suite.F90:197:22: + + & IM,IX,KM,dvdt,dudt,dtdt,U1,V1,T1,Q1,KPBL, & + 1 +Warning: Unused dummy argument ‘ix’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/drag_suite.F90:198:57: + + & PRSI,DEL,PRSL,PRSLK,PHII,PHIL,DELTIM,KDT, & + 1 +Warning: Unused dummy argument ‘kdt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/drag_suite.F90:209:22: + + & lprnt, ipr, rdxzb, dx, gwd_opt, errmsg, errflg ) + 1 +Warning: Unused dummy argument ‘lprnt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/drag_suite.F90:198:41: + + & PRSI,DEL,PRSL,PRSLK,PHII,PHIL,DELTIM,KDT, & + 1 +Warning: Unused dummy argument ‘phii’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/drag_suite.F90:208:30: + + & g, cp, rd, rv, fv, pi, imx, cdmbgwd, me, master, & + 1 +Warning: Unused dummy argument ‘rv’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/drag_suite.F90:201:28: + + & THETA,SIGMA,GAMMA,ELVMAX, & + 1 +Warning: Unused dummy argument ‘sigma’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/drag_suite.F90:201:22: + + & THETA,SIGMA,GAMMA,ELVMAX, & + 1 +Warning: Unused dummy argument ‘theta’ at (1) [-Wunused-dummy-argument] +[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:1875:11: + + real t ! temperature (K) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:1888:11: + + real t ! temperature (K) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:1889:11: + + real p ! pressure (Pa) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:1900:11: + + real t ! temperature (K) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:1920:11: + + real t ! temperature (K) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:1921:11: + + real p ! pressure (Pa) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:1931:11: + + real t ! temperature (K) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:1943:11: + + real t ! temperature (K) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:1944:11: + + real p ! pressure (Pa) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:1950:11: + + real t ! temperature (K) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:1971:11: + + real t ! temperature (K) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:1972:11: + + real p ! pressure (Pa) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:1164:27: + + integer i, j, k, kb, ks, zend + 1 +Warning: Unused variable ‘ks’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:1164:33: + + integer i, j, k, kb, ks, zend + 1 +Warning: Unused variable ‘zend’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:858:44: + + integer i, j, k, kk, kl, ku, kb, kc, kli, kui + 1 +Warning: Unused variable ‘kli’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:858:49: + + integer i, j, k, kk, kl, ku, kb, kc, kli, kui + 1 +Warning: Unused variable ‘kui’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:857:33: + + real wrk, wrk1, wrk2, wrk3 + 1 +Warning: Unused variable ‘wrk3’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:824:34: + + real rdzw, wrku, wrkv, wrkw + 1 +Warning: Unused variable ‘wrkw’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:652:66: + + buoy_sgs,ratio,a_prod_sh,a_prod_bu,a_diss,a_prod_bu_debug, buoy_sgs_debug, & + 1 +Warning: Unused variable ‘a_prod_bu_debug’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:651:42: + + real grd,betdz,Cee,lstarn, lstarp, bbb, omn, omp,qsatt,dqsat, smix, & + 1 +Warning: Unused variable ‘bbb’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:651:18: + + real grd,betdz,Cee,lstarn, lstarp, bbb, omn, omp,qsatt,dqsat, smix, & + 1 +Warning: Unused variable ‘betdz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:652:82: + + buoy_sgs,ratio,a_prod_sh,a_prod_bu,a_diss,a_prod_bu_debug, buoy_sgs_debug, & + 1 +Warning: Unused variable ‘buoy_sgs_debug’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:651:64: + + real grd,betdz,Cee,lstarn, lstarp, bbb, omn, omp,qsatt,dqsat, smix, & + 1 +Warning: Unused variable ‘dqsat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:651:29: + + real grd,betdz,Cee,lstarn, lstarp, bbb, omn, omp,qsatt,dqsat, smix, & + 1 +Warning: Unused variable ‘lstarn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:651:37: + + real grd,betdz,Cee,lstarn, lstarp, bbb, omn, omp,qsatt,dqsat, smix, & + 1 +Warning: Unused variable ‘lstarp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:651:47: + + real grd,betdz,Cee,lstarn, lstarp, bbb, omn, omp,qsatt,dqsat, smix, & + 1 +Warning: Unused variable ‘omn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:651:52: + + real grd,betdz,Cee,lstarn, lstarp, bbb, omn, omp,qsatt,dqsat, smix, & + 1 +Warning: Unused variable ‘omp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:651:58: + + real grd,betdz,Cee,lstarn, lstarp, bbb, omn, omp,qsatt,dqsat, smix, & + 1 +Warning: Unused variable ‘qsatt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:399:16: + + basetemp2, beta1, beta2, qs1, qs2, & + 1 +Warning: Unused variable ‘basetemp2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:395:68: + + thl_first, qw_first, w_first, Tl1_1, Tl1_2, betatest, pval, pkap, & + 1 +Warning: Unused variable ‘betatest’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:397:80: + + thec, thlsec, qwsec, qwthlsec, wqwsec, wthlsec, thestd,dum, & + 1 +Warning: Unused variable ‘dum’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:205:37: + + wthv_sec, lprnt, ipr, ncpl, ncpi, & + 1 +Warning: Unused dummy argument ‘ipr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:200:56: + + subroutine shoc_work (ix, nx, ny, nzm, nz, dtn, me, lat, & + 1 +Warning: Unused dummy argument ‘lat’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:205:32: + + wthv_sec, lprnt, ipr, ncpl, ncpi, & + 1 +Warning: Unused dummy argument ‘lprnt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:200:51: + + subroutine shoc_work (ix, nx, ny, nzm, nz, dtn, me, lat, & + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:205:49: + + wthv_sec, lprnt, ipr, ncpl, ncpi, & + 1 +Warning: Unused dummy argument ‘ncpi’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:205:43: + + wthv_sec, lprnt, ipr, ncpl, ncpi, & + 1 +Warning: Unused dummy argument ‘ncpl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:398:80: + + cqt1, cthl1, cqt2, cthl2, qn1, qn2, qi1, qi2, omn1, omn2, & + 1 +Warning: Unused variable ‘omn1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:398:86: + + cqt1, cthl1, cqt2, cthl2, qn1, qn2, qi1, qi2, omn1, omn2, & + 1 +Warning: Unused variable ‘omn2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:394:25: + + r_qwthl_1, r_wqw_1, r_wthl_1, testvar, s1, s2, std_s1, std_s2, C1, C2, & + 1 +Warning: Unused variable ‘r_wqw_1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:394:37: + + r_qwthl_1, r_wqw_1, r_wthl_1, testvar, s1, s2, std_s1, std_s2, C1, C2, & + 1 +Warning: Unused variable ‘r_wthl_1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:402:15: + + sqrtstd1, sqrtstd2, tsign, tvar, sqrtw2t, wqls, wqis, & + 1 +Warning: Unused variable ‘sqrtstd1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:402:26: + + sqrtstd1, sqrtstd2, tsign, tvar, sqrtw2t, wqls, wqis, & + 1 +Warning: Unused variable ‘sqrtstd2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:390:67: + + real lstarn, depth, omn, betdz, bbb, term, qsatt, dqsat, & + 1 +Warning: Unused variable ‘term’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:397:11: + + thec, thlsec, qwsec, qwthlsec, wqwsec, wthlsec, thestd,dum, & + 1 +Warning: Unused variable ‘thec’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:397:76: + + thec, thlsec, qwsec, qwthlsec, wqwsec, wthlsec, thestd,dum, & + 1 +Warning: Unused variable ‘thestd’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:402:45: + + sqrtstd1, sqrtstd2, tsign, tvar, sqrtw2t, wqls, wqis, & + 1 +Warning: Unused variable ‘tvar’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:396:27: + + w2thl, w2qw,w2ql, w2ql_1, w2ql_2, & + 1 +Warning: Unused variable ‘w2ql’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:396:35: + + w2thl, w2qw,w2ql, w2ql_1, w2ql_2, & + 1 +Warning: Unused variable ‘w2ql_1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:396:47: + + w2thl, w2qw,w2ql, w2ql_1, w2ql_2, & + 1 +Warning: Unused variable ‘w2ql_2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:396:22: + + w2thl, w2qw,w2ql, w2ql_1, w2ql_2, & + 1 +Warning: Unused variable ‘w2qw’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:396:12: + + w2thl, w2qw,w2ql, w2ql_1, w2ql_2, & + 1 +Warning: Unused variable ‘w2thl’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:393:46: + + qw2_2, ql1, ql2, w_ql1, w_ql2, & + 1 +Warning: Unused variable ‘w_ql1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:393:58: + + qw2_2, ql1, ql2, w_ql1, w_ql2, & + 1 +Warning: Unused variable ‘w_ql2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:27:41: + + subroutine shoc_run (ix, nx, nzm, do_shoc, shocaftcnv, mg3_as_mg2, imp_physics, imp_physics_gfdl, imp_physics_zhao_carr, & + 1 +Warning: Unused dummy argument ‘do_shoc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:31:14: + + skip_macro, clw_ice, clw_liquid, gq0_cloud_liquid, ncpl, ncpi, gt0, gq0_water_vapor, cld_sgs, tke, tkh, wthv_sec, & + 1 +Warning: Unused dummy argument ‘skip_macro’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcm_shoc.F90:1119:0: + + subroutine conv_scale() + +Warning: ‘conv_scale’ defined but not used [-Wunused-function] +[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gscond.f:46:54: + + &, tp1, qp1, psp1, u, lprnt, ipr, errmsg, errflg) + 1 +Warning: Unused dummy argument ‘ipr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gscond.f:46:49: + + &, tp1, qp1, psp1, u, lprnt, ipr, errmsg, errflg) + 1 +Warning: Unused dummy argument ‘lprnt’ at (1) [-Wunused-dummy-argument] +[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gwdc.f:146:57: + + & grav,cp,rd,fv,pi,dlength,lprnt,ipr,fhour, & + 1 +Warning: Unused dummy argument ‘fhour’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gwdc.f:258:34: + + integer i,ii,k,k1,kk,kb,ilev,npt,kcb,kcldm,npr + 1 +Warning: Unused variable ‘ilev’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gwdc.f:258:42: + + integer i,ii,k,k1,kk,kb,ilev,npt,kcb,kcldm,npr + 1 +Warning: Unused variable ‘kcb’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gwdc.f:144:39: + + subroutine gwdc_run (im,ix,km,lat,u1,v1,t1,q1,deltim, & + 1 +Warning: Unused dummy argument ‘lat’ at (1) [-Wunused-dummy-argument] +[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o +[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro.F90:1968:49: + + real :: stab, cfcrit, cf00, cfp1 + 1 +Warning: Unused variable ‘cf00’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro.F90:1968:35: + + real :: stab, cfcrit, cf00, cfp1 + 1 +Warning: Unused variable ‘stab’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro.F90:310:46: + + & dummyW , wparc_cgw, cfaux, dpre8, & + 1 +Warning: Unused variable ‘cfaux’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro.F90:238:71: + + & TMAXLL, USURF,LTS_UP, LTS_LOW, MIN_EXP, fracover, c2_gw, est3 + 1 +Warning: Unused variable ‘est3’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro.F90:309:49: + + & tm_gw, pm_gw, nm_gw, h_gw, rho_gw, khaux, qcaux, & + 1 +Warning: Unused variable ‘khaux’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro.F90:363:64: + + real(kind=kind_phys):: k_gw, maxkh, tausurf_gw, overscale, tx1, rh1_r8 + 1 +Warning: Unused variable ‘overscale’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro.F90:128:38: + + &, TAUGWX, TAUGWY & + 1 +Warning: Unused dummy argument ‘taugwx’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro.F90:128:48: + + &, TAUGWX, TAUGWY & + 1 +Warning: Unused dummy argument ‘taugwy’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro.F90:238:23: + + & TMAXLL, USURF,LTS_UP, LTS_LOW, MIN_EXP, fracover, c2_gw, est3 + 1 +Warning: Unused variable ‘usurf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro.F90:308:64: + + real(kind=kind_phys), dimension (LM) :: uwind_gw,vwind_gw, & + 1 +Warning: Unused variable ‘vwind_gw’ declared at (1) [-Wunused-variable] +[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro.F90:1961:0: + + subroutine find_cldtop(ncol, pver, cf, kcldtop) + +Warning: ‘find_cldtop’ defined but not used [-Wunused-function] +[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/memutils/memutils.F90:290:21: + + integer :: memuse !default integer OK? + 1 +Warning: Unused variable ‘memuse’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:4440:42: + + fileObj%p0di(k,j)%p = r0d + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:4445:42: + + fileObj%p1di(k,j)%p = r1d + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:4452:59: + + fileObj%p2di(k,j)%p(isc:iec,jsc:jec) = r2d(isc:iec,jsc:jec) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:4460:61: + + fileObj%p3di(k,j)%p(isc:iec,jsc:jec,:) = r3d(isc:iec,jsc:jec,:) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:4489:42: + + fileObj%p0di(k,j)%p = r0d + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:4494:42: + + fileObj%p1di(k,j)%p = r1d + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:4501:42: + + fileObj%p2di(k,j)%p = r2d + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:4509:42: + + fileObj%p3di(k,j)%p = r3d + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:4122:45: + + fileObj%p0di(k,j)%p = r0d + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:4127:45: + + fileObj%p1di(k,j)%p = r1d + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:4134:62: + + fileObj%p2di(k,j)%p(isc:iec,jsc:jec) = r2d(isc:iec,jsc:jec) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:4142:64: + + fileObj%p3di(k,j)%p(isc:iec,jsc:jec,:) = r3d(isc:iec,jsc:jec,:) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:4171:45: + + fileObj%p0di(k,j)%p = r0d + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:4176:45: + + fileObj%p1di(k,j)%p = r1d + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:4183:45: + + fileObj%p2di(k,j)%p = r2d + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:4191:45: + + fileObj%p3di(k,j)%p = r3d + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:3415:28: + + restartname = fileObj%name + 1 +Warning: CHARACTER expression will be truncated in assignment (80/128) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:2505:28: + + restartname = fileObj%name + 1 +Warning: CHARACTER expression will be truncated in assignment (80/128) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:2352:28: + + data_default_r = TRANSFER(MPP_FILL_INT,data_default_r) + 1 +Warning: Intrinsic TRANSFER at (1) has partly undefined result: source size 4 < result size 8 [-Wsurprising] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:2353:55: + + if (present(data_default)) data_default_r = TRANSFER(data_default ,data_default_r) + 1 +Warning: Intrinsic TRANSFER at (1) has partly undefined result: source size 4 < result size 8 [-Wsurprising] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:2311:28: + + data_default_r = TRANSFER(MPP_FILL_INT,data_default_r) + 1 +Warning: Intrinsic TRANSFER at (1) has partly undefined result: source size 4 < result size 8 [-Wsurprising] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:2312:55: + + if (present(data_default)) data_default_r = TRANSFER(data_default ,data_default_r) + 1 +Warning: Intrinsic TRANSFER at (1) has partly undefined result: source size 4 < result size 8 [-Wsurprising] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:2270:28: + + data_default_r = TRANSFER(MPP_FILL_INT,data_default_r) + 1 +Warning: Intrinsic TRANSFER at (1) has partly undefined result: source size 4 < result size 8 [-Wsurprising] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:2271:55: + + if (present(data_default)) data_default_r = TRANSFER(data_default ,data_default_r) + 1 +Warning: Intrinsic TRANSFER at (1) has partly undefined result: source size 4 < result size 8 [-Wsurprising] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:2229:28: + + data_default_r = TRANSFER(MPP_FILL_INT,data_default_r) + 1 +Warning: Intrinsic TRANSFER at (1) has partly undefined result: source size 4 < result size 8 [-Wsurprising] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:2230:55: + + if (present(data_default)) data_default_r = TRANSFER(data_default ,data_default_r) + 1 +Warning: Intrinsic TRANSFER at (1) has partly undefined result: source size 4 < result size 8 [-Wsurprising] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:1986:28: + + data_default_r = TRANSFER(MPP_FILL_INT,data_default_r) + 1 +Warning: Intrinsic TRANSFER at (1) has partly undefined result: source size 4 < result size 8 [-Wsurprising] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:1987:55: + + if (present(data_default)) data_default_r = TRANSFER(data_default ,data_default_r) + 1 +Warning: Intrinsic TRANSFER at (1) has partly undefined result: source size 4 < result size 8 [-Wsurprising] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:1947:28: + + data_default_r = TRANSFER(MPP_FILL_INT,data_default_r) + 1 +Warning: Intrinsic TRANSFER at (1) has partly undefined result: source size 4 < result size 8 [-Wsurprising] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:1948:55: + + if (present(data_default)) data_default_r = TRANSFER(data_default ,data_default_r) + 1 +Warning: Intrinsic TRANSFER at (1) has partly undefined result: source size 4 < result size 8 [-Wsurprising] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:1903:28: + + data_default_r = TRANSFER(MPP_FILL_INT,data_default_r) + 1 +Warning: Intrinsic TRANSFER at (1) has partly undefined result: source size 4 < result size 8 [-Wsurprising] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:1904:55: + + if (present(data_default)) data_default_r = TRANSFER(data_default ,data_default_r) + 1 +Warning: Intrinsic TRANSFER at (1) has partly undefined result: source size 4 < result size 8 [-Wsurprising] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:1863:28: + + data_default_r = TRANSFER(MPP_FILL_INT,data_default_r) + 1 +Warning: Intrinsic TRANSFER at (1) has partly undefined result: source size 4 < result size 8 [-Wsurprising] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:1864:55: + + if (present(data_default)) data_default_r = TRANSFER(data_default ,data_default_r) + 1 +Warning: Intrinsic TRANSFER at (1) has partly undefined result: source size 4 < result size 8 [-Wsurprising] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:1000:26: + + default_data = TRANSFER(MPP_FILL_INT,default_data) + 1 +Warning: Intrinsic TRANSFER at (1) has partly undefined result: source size 4 < result size 8 [-Wsurprising] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:985:26: + + default_data = TRANSFER(MPP_FILL_INT,default_data) + 1 +Warning: Intrinsic TRANSFER at (1) has partly undefined result: source size 4 < result size 8 [-Wsurprising] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:969:26: + + default_data = TRANSFER(MPP_FILL_INT,default_data) + 1 +Warning: Intrinsic TRANSFER at (1) has partly undefined result: source size 4 < result size 8 [-Wsurprising] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:952:26: + + default_data = TRANSFER(MPP_FILL_INT,default_data) + 1 +Warning: Intrinsic TRANSFER at (1) has partly undefined result: source size 4 < result size 8 [-Wsurprising] +[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:8141:80: + + subroutine get_field_id(unit, index_file, fieldname, index_field, is_no_domain, is_not_dim) + 1 +Warning: Unused dummy argument ‘is_no_domain’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:6998:14: + + integer :: m + 1 +Warning: Unused variable ‘m’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro_interstitial.F90:26:72: + + qrn, qsnw, qgl, ncpr, ncps, ncgl, cld_frc_MG, qlcn, qicn, cf_upi, clw_water, clw_ice, clcn, errmsg, errflg ) 1 -Warning: Type mismatch in argument ‘km’ at (1); passed INTEGER(4) to REAL(8) [-Wargument-mismatch] -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F:2009:72: +Warning: Unused dummy argument ‘cf_upi’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro_interstitial.F90:25:87: + + gq0_snow, gq0_graupel, gq0_rain_nc, gq0_snow_nc, gq0_graupel_nc, cld_shoc, cnvc, cnvw, tcr, tcrf, gt0, & + 1 +Warning: Unused dummy argument ‘cnvc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro_interstitial.F90:25:93: + + gq0_snow, gq0_graupel, gq0_rain_nc, gq0_snow_nc, gq0_graupel_nc, cld_shoc, cnvc, cnvw, tcr, tcrf, gt0, & + 1 +Warning: Unused dummy argument ‘cnvw’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro_interstitial.F90:25:109: + + gq0_snow, gq0_graupel, gq0_rain_nc, gq0_snow_nc, gq0_graupel_nc, cld_shoc, cnvc, cnvw, tcr, tcrf, gt0, & + 1 +Warning: Unused dummy argument ‘gt0’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro_interstitial.F90:26:64: + + qrn, qsnw, qgl, ncpr, ncps, ncgl, cld_frc_MG, qlcn, qicn, cf_upi, clw_water, clw_ice, clcn, errmsg, errflg ) + 1 +Warning: Unused dummy argument ‘qicn’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro_interstitial.F90:26:58: + + qrn, qsnw, qgl, ncpr, ncps, ncgl, cld_frc_MG, qlcn, qicn, cf_upi, clw_water, clw_ice, clcn, errmsg, errflg ) + 1 +Warning: Unused dummy argument ‘qlcn’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro_interstitial.F90:25:98: + + gq0_snow, gq0_graupel, gq0_rain_nc, gq0_snow_nc, gq0_graupel_nc, cld_shoc, cnvc, cnvw, tcr, tcrf, gt0, & + 1 +Warning: Unused dummy argument ‘tcr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro_interstitial.F90:25:104: + + gq0_snow, gq0_graupel, gq0_rain_nc, gq0_snow_nc, gq0_graupel_nc, cld_shoc, cnvc, cnvw, tcr, tcrf, gt0, & + 1 +Warning: Unused dummy argument ‘tcrf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/m_micro_interstitial.F90:54:33: + + real(kind=kind_phys) :: tem + 1 +Warning: Unused variable ‘tem’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:5613:27: + + integer :: i,lsize + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:5614:35: + + logical :: is_ioroot=.false. + 1 +Warning: Unused variable ‘is_ioroot’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:5613:33: + + integer :: i,lsize + 1 +Warning: Unused variable ‘lsize’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:5612:35: + + integer, allocatable :: pelist(:) + 1 +Warning: Unused variable ‘pelist’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:5564:44: + + type(domain2d), pointer, save :: io_domain =>NULL() + 1 +Warning: Unused variable ‘io_domain’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:5521:44: + + type(domain2d), pointer, save :: io_domain =>NULL() + 1 +Warning: Unused variable ‘io_domain’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:5516:50: + + integer :: unit, siz_in(4) + 1 +Warning: Unused variable ‘siz_in’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:3671:32: + + character(len=200) :: filepath ! The path (dir/file) to the file being opened. + 1 +Warning: Unused variable ‘filepath’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:3684:47: + + integer :: ishift, jshift, i_add, j_add + 1 +Warning: Unused variable ‘ishift’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:3684:55: + + integer :: ishift, jshift, i_add, j_add + 1 +Warning: Unused variable ‘jshift’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:3678:45: + + integer :: j, n, l, k, unit + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:3675:75: + + integer :: ndim, nvar, natt, ntime, tlev, siz + 1 +Warning: Unused variable ‘siz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:3394:47: + + integer :: is, ie, js, je + 1 +Warning: Unused variable ‘ie’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:3394:43: + + integer :: is, ie, js, je + 1 +Warning: Unused variable ‘is’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:3394:55: + + integer :: is, ie, js, je + 1 +Warning: Unused variable ‘je’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:3394:51: + + integer :: is, ie, js, je + 1 +Warning: Unused variable ‘js’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:3007:54: + + character(len=256) :: checksum_char + 1 +Warning: Unused variable ‘checksum_char’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:3000:47: + + type(domain2d) :: domain + 1 +Warning: Unused variable ‘domain’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:2999:50: + + integer :: meta_size + 1 +Warning: Unused variable ‘meta_size’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:2994:56: + + integer :: i, j, k, l, siz, ind_dom + 1 +Warning: Unused variable ‘siz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:2979:44: + + integer :: var_sz, size_in_file ! The size in bytes of each variable and of the variables already in a file. + 1 +Warning: Unused variable ‘size_in_file’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:2978:30: + + character(len=8) :: suffix ! A suffix (like _2) that is appended to the name of files after the first. + 1 +Warning: Unused variable ‘suffix’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:2979:30: + + integer :: var_sz, size_in_file ! The size in bytes of each variable and of the variables already in a file. + 1 +Warning: Unused variable ‘var_sz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:2899:54: + + character(len=256) :: checksum_char + 1 +Warning: Unused variable ‘checksum_char’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:2896:42: + + integer :: i, j, k, l, num_var_axes, cpack, idx + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:2896:77: + + integer :: i, j, k, l, num_var_axes, cpack, idx + 1 +Warning: Unused variable ‘idx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:2896:48: + + integer :: i, j, k, l, num_var_axes, cpack, idx + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:2896:51: + + integer :: i, j, k, l, num_var_axes, cpack, idx + 1 +Warning: Unused variable ‘l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:2597:54: + + character(len=256) :: checksum_char + 1 +Warning: Unused variable ‘checksum_char’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:2598:55: + + logical :: domain_present, write_meta_data, write_field_data + 1 +Warning: Unused variable ‘domain_present’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:2591:51: + + integer :: i, j, k, l, num_var_axes, cpack, idx, mpp_action + 1 +Warning: Unused variable ‘l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:1365:59: + + subroutine register_restart_axis_unlimited(fileObj,filename,fieldname,nelem,units,longname) + 1 +Warning: Unused dummy argument ‘filename’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:1294:53: + + subroutine register_restart_axis_i1d(fileObj,filename,fieldname,data,compressed, & + 1 +Warning: Unused dummy argument ‘filename’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:1234:53: + + subroutine register_restart_axis_r1d(fileObj,filename,fieldname,data,cartesian,units,longname,sense,min,calendar) + 1 +Warning: Unused dummy argument ‘filename’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:639:67: + + integer :: i, unit, io_status, logunit + 1 +Warning: Unused variable ‘logunit’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:640:46: + + integer, allocatable, dimension(:) :: pelist + 1 +Warning: Unused variable ‘pelist’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io.F90:639:47: + + integer :: i, unit, io_status, logunit + 1 +Warning: Unused variable ‘unit’ declared at (1) [-Wunused-variable] +[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90:132:16: + + elflx,mixht,ct + 1 +Warning: Unused variable ‘elflx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90:25:10: + + & ix,im,levs,dt_phs, & + 1 +Warning: Unused dummy argument ‘ix’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90:43:17: + + & me, lprnt, errmsg, errflg ) + 1 +Warning: Unused dummy argument ‘lprnt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90:27:32: + + & ntcw,ntiw,ntrw,ntsw,ntgl, & + 1 +Warning: Unused dummy argument ‘ntgl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90:27:17: + + & ntcw,ntiw,ntrw,ntsw,ntgl, & + 1 +Warning: Unused dummy argument ‘ntiw’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90:27:22: + + & ntcw,ntiw,ntrw,ntsw,ntgl, & + 1 +Warning: Unused dummy argument ‘ntrw’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90:27:27: + + & ntcw,ntiw,ntrw,ntsw,ntgl, & + 1 +Warning: Unused dummy argument ‘ntsw’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90:30:32: + + & prsik_1, prslk_1, prslki, tsfc, qsfc, & + 1 +Warning: Unused dummy argument ‘prslki’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90:153:23: + + & ,rho,qfc1,gdx,xkzm_hx,xkzm_mx,tx1, tx2 + 1 +Warning: Unused variable ‘qfc1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90:153:18: + + & ,rho,qfc1,gdx,xkzm_hx,xkzm_mx,tx1, tx2 + 1 +Warning: Unused variable ‘rho’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io_unstructured_read.inc:362:0: + + if (tlevel .le. 0) then + +Warning: ‘tlevel’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms_io_unstructured_read.inc:50:0: - call diff_1d_ptend(levs, dtstab, Fw, Kpt, del(i,:), Sw) + if (tlevel .le. 0) then + +Warning: ‘tlevel’ may be used uninitialized in this function [-Wmaybe-uninitialized] +[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o +[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90:39:40: + + & landfrac,lakefrac,oceanfrac,fice, & + 1 +Warning: Unused dummy argument ‘fice’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90:25:10: + + & ix,im,levs, & + 1 +Warning: Unused dummy argument ‘ix’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90:39:25: + + & landfrac,lakefrac,oceanfrac,fice, & + 1 +Warning: Unused dummy argument ‘lakefrac’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90:39:16: + + & landfrac,lakefrac,oceanfrac,fice, & + 1 +Warning: Unused dummy argument ‘landfrac’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90:51:17: + + & me, lprnt, errmsg, errflg ) ! intent(inout) + 1 +Warning: Unused dummy argument ‘lprnt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90:39:35: + + & landfrac,lakefrac,oceanfrac,fice, & + 1 +Warning: Unused dummy argument ‘oceanfrac’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90:31:15: + + & prsik_1, prslk_1, tsfc, qsfc, & + 1 +Warning: Unused dummy argument ‘prsik_1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90:31:24: + + & prsik_1, prslk_1, tsfc, qsfc, & + 1 +Warning: Unused dummy argument ‘prslk_1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:244:61: + + REAL(kind=kind_phys), DIMENSION( levs, nchem ) :: chem1 + 1 +Warning: Unused variable ‘chem1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:242:57: + + real(kind=kind_phys), dimension(im,nchem) :: chem3d + 1 +Warning: Unused variable ‘chem3d’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:56:34: + + & dqdt_ice_cloud, dqdt_ozone, & + 1 +Warning: Unused dummy argument ‘dqdt_ozone’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:193:24: + + INTEGER :: IDS,IDE,JDS,JDE,KDS,KDE, & + 1 +Warning: Unused variable ‘ide’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:193:20: + + INTEGER :: IDS,IDE,JDS,JDE,KDS,KDE, & + 1 +Warning: Unused variable ‘ids’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:194:25: + + & IMS,IME,JMS,JME,KMS,KME, & + 1 +Warning: Unused variable ‘ime’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:194:21: + + & IMS,IME,JMS,JME,KMS,KME, & + 1 +Warning: Unused variable ‘ims’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:195:25: + + & ITS,ITE,JTS,JTE,KTS,KTE + 1 +Warning: Unused variable ‘ite’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:195:21: + + & ITS,ITE,JTS,JTE,KTS,KTE + 1 +Warning: Unused variable ‘its’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:26:10: + + & ix,im,levs, & + 1 +Warning: Unused dummy argument ‘ix’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:193:32: + + INTEGER :: IDS,IDE,JDS,JDE,KDS,KDE, & + 1 +Warning: Unused variable ‘jde’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:193:28: + + INTEGER :: IDS,IDE,JDS,JDE,KDS,KDE, & + 1 +Warning: Unused variable ‘jds’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:194:33: + + & IMS,IME,JMS,JME,KMS,KME, & + 1 +Warning: Unused variable ‘jme’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:194:29: + + & IMS,IME,JMS,JME,KMS,KME, & + 1 +Warning: Unused variable ‘jms’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:195:33: + + & ITS,ITE,JTS,JTE,KTS,KTE + 1 +Warning: Unused variable ‘jte’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:195:29: + + & ITS,ITE,JTS,JTE,KTS,KTE + 1 +Warning: Unused variable ‘jts’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:193:40: + + INTEGER :: IDS,IDE,JDS,JDE,KDS,KDE, & + 1 +Warning: Unused variable ‘kde’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:193:36: + + INTEGER :: IDS,IDE,JDS,JDE,KDS,KDE, & + 1 +Warning: Unused variable ‘kds’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:196:22: + + INTEGER :: kdvel, num_vert_mix + 1 +Warning: Unused variable ‘kdvel’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:194:41: + + & IMS,IME,JMS,JME,KMS,KME, & + 1 +Warning: Unused variable ‘kme’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:194:37: + + & IMS,IME,JMS,JME,KMS,KME, & + 1 +Warning: Unused variable ‘kms’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:195:41: + + & ITS,ITE,JTS,JTE,KTS,KTE + 1 +Warning: Unused variable ‘kte’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:195:37: + + & ITS,ITE,JTS,JTE,KTS,KTE + 1 +Warning: Unused variable ‘kts’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:196:36: + + INTEGER :: kdvel, num_vert_mix + 1 +Warning: Unused variable ‘num_vert_mix’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:234:22: + + & dz, w, p, rho, th, qv, tke_pbl, & + 1 +Warning: Unused variable ‘p’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:245:67: + + REAL(kind=kind_phys), DIMENSION( levs+1, nchem ) :: s_awchem1 + 1 +Warning: Unused variable ‘s_awchem1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:246:53: + + REAL(kind=kind_phys), DIMENSION( ndvel ) :: vd1 + 1 +Warning: Unused variable ‘vd1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90:243:55: + + real(kind=kind_phys), dimension(im,ndvel) :: vd3d + 1 +Warning: Unused variable ‘vd3d’ declared at (1) [-Wunused-variable] +[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90:141:34: + + & Sh3D, EL_PBL, EXCH_H, & + 1 +Warning: Unused variable ‘exch_h’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90:132:24: + + INTEGER :: IDS,IDE,JDS,JDE,KDS,KDE, & + 1 +Warning: Unused variable ‘ide’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90:132:20: + + INTEGER :: IDS,IDE,JDS,JDE,KDS,KDE, & + 1 +Warning: Unused variable ‘ids’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90:133:25: + + & IMS,IME,JMS,JME,KMS,KME, & + 1 +Warning: Unused variable ‘ime’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90:133:21: + + & IMS,IME,JMS,JME,KMS,KME, & + 1 +Warning: Unused variable ‘ims’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90:134:25: + + & ITS,ITE,JTS,JTE,KTS,KTE + 1 +Warning: Unused variable ‘ite’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90:134:21: + + & ITS,ITE,JTS,JTE,KTS,KTE + 1 +Warning: Unused variable ‘its’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90:23:10: + + & ix,im,levs, & + 1 +Warning: Unused dummy argument ‘ix’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90:132:32: + + INTEGER :: IDS,IDE,JDS,JDE,KDS,KDE, & + 1 +Warning: Unused variable ‘jde’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90:132:28: + + INTEGER :: IDS,IDE,JDS,JDE,KDS,KDE, & + 1 +Warning: Unused variable ‘jds’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90:133:33: + + & IMS,IME,JMS,JME,KMS,KME, & + 1 +Warning: Unused variable ‘jme’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90:133:29: + + & IMS,IME,JMS,JME,KMS,KME, & + 1 +Warning: Unused variable ‘jms’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90:134:33: + + & ITS,ITE,JTS,JTE,KTS,KTE + 1 +Warning: Unused variable ‘jte’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90:134:29: + + & ITS,ITE,JTS,JTE,KTS,KTE + 1 +Warning: Unused variable ‘jts’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90:132:40: + + INTEGER :: IDS,IDE,JDS,JDE,KDS,KDE, & + 1 +Warning: Unused variable ‘kde’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90:132:36: + + INTEGER :: IDS,IDE,JDS,JDE,KDS,KDE, & + 1 +Warning: Unused variable ‘kds’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90:133:41: + + & IMS,IME,JMS,JME,KMS,KME, & + 1 +Warning: Unused variable ‘kme’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90:133:37: + + & IMS,IME,JMS,JME,KMS,KME, & + 1 +Warning: Unused variable ‘kms’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90:134:41: + + & ITS,ITE,JTS,JTE,KTS,KTE + 1 +Warning: Unused variable ‘kte’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90:134:37: + + & ITS,ITE,JTS,JTE,KTS,KTE + 1 +Warning: Unused variable ‘kts’ declared at (1) [-Wunused-variable] +[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o +[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNrad_post.F90:24:13: + + & ix,im,levs, & + 1 +Warning: Unused dummy argument ‘ix’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90:67:37: + + real :: Tc, iwc + 1 +Warning: Unused variable ‘iwc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90:34:13: + + & ix,im,levs, & + 1 +Warning: Unused dummy argument ‘ix’ at (1) [-Wunused-dummy-argument] +[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o +[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninshoc.f:90:40: + + real(kind=kind_phys) dsdz2, dsdzq, dsdzt, dsig, dt2, rdt + 1 +Warning: Unused variable ‘dsdzq’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninshoc.f:34:36: + + & lprnt,ipr,me, + 1 +Warning: Unused dummy argument ‘ipr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninshoc.f:34:32: + + & lprnt,ipr,me, + 1 +Warning: Unused dummy argument ‘lprnt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninshoc.f:34:39: + + & lprnt,ipr,me, + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninshoc.f:35:35: + + & grav, rd, cp, hvap, fv, + 1 +Warning: Unused dummy argument ‘rd’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/moninshoc.f:33:54: + + & kinver,xkzm_m,xkzm_h,xkzm_s,xkzminv, + 1 +Warning: Unused dummy argument ‘xkzm_s’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mp_thompson.F90:149:37: + + mpicomm, mpirank, mpiroot, & + 1 +Warning: Unused dummy argument ‘mpicomm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mp_thompson.F90:149:46: + + mpicomm, mpirank, mpiroot, & + 1 +Warning: Unused dummy argument ‘mpirank’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mp_thompson.F90:149:55: + + mpicomm, mpirank, mpiroot, & + 1 +Warning: Unused dummy argument ‘mpiroot’ at (1) [-Wunused-dummy-argument] +[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mp_thompson_post.F90:70:47: + + kdt, mpicomm, mpirank, mpiroot, errmsg, errflg) + 1 +Warning: Unused dummy argument ‘mpicomm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mp_thompson_post.F90:70:56: + + kdt, mpicomm, mpirank, mpiroot, errmsg, errflg) + 1 +Warning: Unused dummy argument ‘mpirank’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mp_thompson_post.F90:70:65: + + kdt, mpicomm, mpirank, mpiroot, errmsg, errflg) + 1 +Warning: Unused dummy argument ‘mpiroot’ at (1) [-Wunused-dummy-argument] +[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o +[ 45%] 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.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozphys.f:54:45: + + & prsl, prdout, oz_coeff, delp, ldiag3d, & + 1 +Warning: Unused dummy argument ‘ldiag3d’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozphys.f:55:41: + + & ozp1, ozp2, ozp3, ozp4, con_g, me, errmsg, errflg) + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozphys.f:55:12: + + & ozp1, ozp2, ozp3, ozp4, con_g, me, errmsg, errflg) + 1 +Warning: Unused dummy argument ‘ozp1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozphys.f:55:18: + + & ozp1, ozp2, ozp3, ozp4, con_g, me, errmsg, errflg) + 1 +Warning: Unused dummy argument ‘ozp2’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozphys.f:55:24: + + & ozp1, ozp2, ozp3, ozp4, con_g, me, errmsg, errflg) + 1 +Warning: Unused dummy argument ‘ozp3’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ozphys.f:55:30: + + & ozp1, ozp2, ozp3, ozp4, con_g, me, errmsg, errflg) + 1 +Warning: Unused dummy argument ‘ozp4’ at (1) [-Wunused-dummy-argument] +[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o +[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/precpd.f:151:64: + + &, crs1, crs2, cr, aa2, dtcp, c00, cmr + 1 +Warning: Unused variable ‘c00’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/precpd.f:144:37: + + real (kind=kind_phys) cclim(km) + 1 +Warning: Unused variable ‘cclim’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/precpd.f:50:39: + + &, wk1,lprnt,jpr,errmsg,errflg) + 1 +Warning: Unused dummy argument ‘jpr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/precpd.f:50:35: + + &, wk1,lprnt,jpr,errmsg,errflg) + 1 +Warning: Unused dummy argument ‘lprnt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/precpd.f:158:50: + + &, rprs, erk, pps, sid, rid, amaxps + 1 +Warning: Unused variable ‘sid’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/satmedmfvdif.F:57:18: + + & grav,rd,cp,rv,hvap,hfus,fv,eps,epsm1, & + 1 +Warning: Unused dummy argument ‘rd’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/satmedmfvdif.F:192:31: + + & zfac, zfmin, vk, spdk2, + 1 +Warning: Unused variable ‘zfac’ declared at (1) [-Wunused-variable] +[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o +[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90:1031:59: + + isot, soiltyp, vegtype, fice, & ! in + 1 +Warning: Unused dummy argument ‘fice’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90:1110:19: + + integer :: ii,jj + 1 +Warning: Unused variable ‘ii’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90:1031:35: + + isot, soiltyp, vegtype, fice, & ! in + 1 +Warning: Unused dummy argument ‘isot’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90:1110:22: + + integer :: ii,jj + 1 +Warning: Unused variable ‘jj’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90:1104:41: + + i, j, k, l, num_soil_layers, ipr + 1 +Warning: Unused variable ‘l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90:1037:50: + + wetness, me, master, errmsg, errflg) + 1 +Warning: Unused dummy argument ‘master’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90:1037:42: + + wetness, me, master, errmsg, errflg) + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90:1106:57: + + real(kind=kind_phys), dimension(1:lsoil_ruc) :: zs2, dzs + 1 +Warning: Unused variable ‘zs2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90:148:44: + + & smcwlt2, smcref2, do_mynnsfclay, & + 1 +Warning: Unused dummy argument ‘do_mynnsfclay’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90:236:20: + + & dew, drip, ec, edir, ett, lh, esnow, etp, qfx, & + 1 +Warning: Unused variable ‘drip’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90:192:56: + + real (kind=kind_phys), dimension(lsoil_ruc) :: dzs + 1 +Warning: Unused variable ‘dzs’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90:236:25: + + & dew, drip, ec, edir, ett, lh, esnow, etp, qfx, & + 1 +Warning: Unused variable ‘ec’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90:236:31: + + & dew, drip, ec, edir, ett, lh, esnow, etp, qfx, & + 1 +Warning: Unused variable ‘edir’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90:236:47: + + & dew, drip, ec, edir, ett, lh, esnow, etp, qfx, & + 1 +Warning: Unused variable ‘esnow’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90:224:55: + + real (kind=kind_phys), dimension(lsoil_ruc) :: et + 1 +Warning: Unused variable ‘et’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90:236:52: + + & dew, drip, ec, edir, ett, lh, esnow, etp, qfx, & + 1 +Warning: Unused variable ‘etp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90:236:36: + + & dew, drip, ec, edir, ett, lh, esnow, etp, qfx, & + 1 +Warning: Unused variable ‘ett’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90:151:31: + + & rainnc, rainc, ice, snow, graupel, & ! in + 1 +Warning: Unused dummy argument ‘ice’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90:264:18: + + integer :: l, k, i, j, fractional_seaice + 1 +Warning: Unused variable ‘l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90:267:29: + + logical :: rdlai2d, myj, frpcpn + 1 +Warning: Unused variable ‘myj’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90:218:49: + + real (kind=kind_phys), dimension(im) :: rch, rho, & + 1 +Warning: Unused variable ‘rch’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90:143:42: + + & sfcemis, dlwflx, dswsfc, snet, delt, tg3, cm, ch, & + 1 +Warning: Unused dummy argument ‘snet’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90:242:39: + + & sneqv, snoalb1d, snowh, snoh, tsnav, & + 1 +Warning: Unused variable ‘snoh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90:243:32: + + & snomlt, sncovr, soilw, soilm, ssoil, soilt, tbot, & + 1 +Warning: Unused variable ‘soilw’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90:220:22: + + & tprcp_old, srflag_old, tskin_old, canopy_old, & + 1 +Warning: Unused variable ‘tprcp_old’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_drv_ruc.F90:244:15: + + & xlai, swdn, z0, znt, rhosnfr, infiltr, & + 1 +Warning: Unused variable ‘xlai’ declared at (1) [-Wunused-variable] +[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:1191:72: + + real, parameter :: elcp = 2.4888e+3, lsubc = 2.501000e+6,cp = 1004.6 + 1 +Warning: Line truncated at (1) [-Wline-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:1087:29: + + parameters%nroot = nroot_table(vegtype) !number of soil layers with root present + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:1188:68: + + real :: a, delta, fnet,rad,rho,emissi,elcp1,lvs + 1 +Warning: Unused variable ‘elcp1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:237:48: + + real (kind=kind_phys) :: alb, albedo, beta, chx, cmx, cmc, & + 1 +Warning: Unused variable ‘beta’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:238:16: + + & dew, drip, dqsdt2, ec, edir, ett, eta, esnow, etp, & + 1 +Warning: Unused variable ‘dew’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:238:22: + + & dew, drip, dqsdt2, ec, edir, ett, eta, esnow, etp, & + 1 +Warning: Unused variable ‘drip’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:238:34: + + & dew, drip, dqsdt2, ec, edir, ett, eta, esnow, etp, & + 1 +Warning: Unused variable ‘ec’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:218:48: + + real (kind=kind_phys), dimension(km) :: et,stsoil,smsoil, slsoil + 1 +Warning: Unused variable ‘et’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:238:45: + + & dew, drip, dqsdt2, ec, edir, ett, eta, esnow, etp, & + 1 +Warning: Unused variable ‘ett’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:239:17: + + & flx1, flx2, flx3, ffrozp, lwdn, pc, prcp, ptu, q2, & + 1 +Warning: Unused variable ‘flx1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:239:23: + + & flx1, flx2, flx3, ffrozp, lwdn, pc, prcp, ptu, q2, & + 1 +Warning: Unused variable ‘flx2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:239:29: + + & flx1, flx2, flx3, ffrozp, lwdn, pc, prcp, ptu, q2, & + 1 +Warning: Unused variable ‘flx3’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:115:9: + + use noahmp_tables, only : isice_table, co2_table, o2_table, & + 1 +Warning: Unused module variable ‘isurban_table’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:79:26: + + & ( im, km, itime, ps, u1, v1, t1, q1, soiltyp, vegtype, & + 1 +Warning: Unused dummy argument ‘itime’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:198:57: + + integer, dimension(im) :: jsnowxy + 1 +Warning: Unused variable ‘jsnowxy’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:115:9: + + use noahmp_tables, only : isice_table, co2_table, o2_table, & + 1 +Warning: Unused module variable ‘laim_table’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:275:53: + + integer :: i, k, ice, stype, vtype ,slope,nroot,couple + 1 +Warning: Unused variable ‘nroot’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:239:47: + + & flx1, flx2, flx3, ffrozp, lwdn, pc, prcp, ptu, q2, & + 1 +Warning: Unused variable ‘pc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:240:30: + + & q2sat, solnet, rc, rcs, rct, rcq, rcsoil, rsmin, & + 1 +Warning: Unused variable ‘rc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:240:45: + + & q2sat, solnet, rc, rcs, rct, rcq, rcsoil, rsmin, & + 1 +Warning: Unused variable ‘rcq’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:240:35: + + & q2sat, solnet, rc, rcs, rct, rcq, rcsoil, rsmin, & + 1 +Warning: Unused variable ‘rcs’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:240:53: + + & q2sat, solnet, rc, rcs, rct, rcq, rcsoil, rsmin, & + 1 +Warning: Unused variable ‘rcsoil’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:240:40: + + & q2sat, solnet, rc, rcs, rct, rcq, rcsoil, rsmin, & + 1 +Warning: Unused variable ‘rct’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:240:60: + + & q2sat, solnet, rc, rcs, rct, rcq, rcsoil, rsmin, & + 1 +Warning: Unused variable ‘rsmin’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:241:20: + + & runoff1, runoff2, runoff3, sfcspd, sfcprs, sfctmp, & + 1 +Warning: Unused variable ‘runoff1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:241:29: + + & runoff1, runoff2, runoff3, sfcspd, sfcprs, sfctmp, & + 1 +Warning: Unused variable ‘runoff2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:241:38: + + & runoff1, runoff2, runoff3, sfcspd, sfcprs, sfctmp, & + 1 +Warning: Unused variable ‘runoff3’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:115:9: + + use noahmp_tables, only : isice_table, co2_table, o2_table, & + 1 +Warning: Unused module variable ‘saim_table’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:242:26: + + & sfcems, sheat, shdfac, shdmin1d, shdmax1d, smcwlt, & + 1 +Warning: Unused variable ‘sheat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:243:19: + + & smcdry, smcref, smcmax, sneqv, snoalb1d, snowh, & + 1 +Warning: Unused variable ‘smcdry’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:244:27: + + & snomlt, sncovr, soilw, soilm, ssoil, tsea, th2, & + 1 +Warning: Unused variable ‘sncovr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:199:56: + + real (kind=kind_phys),dimension(im) :: snodep + 1 +Warning: Unused variable ‘snodep’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:244:19: + + & snomlt, sncovr, soilw, soilm, ssoil, tsea, th2, & + 1 +Warning: Unused variable ‘snomlt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:244:41: + + & snomlt, sncovr, soilw, soilm, ssoil, tsea, th2, & + 1 +Warning: Unused variable ‘soilm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:244:34: + + & snomlt, sncovr, soilw, soilm, ssoil, tsea, th2, & + 1 +Warning: Unused variable ‘soilw’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:218:55: + + real (kind=kind_phys), dimension(km) :: et,stsoil,smsoil, slsoil + 1 +Warning: Unused variable ‘stsoil’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:234:58: + + real(kind=kind_phys),dimension(im,-2:4) :: tsnso_old + 1 +Warning: Unused variable ‘tsnso_old’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfc_noahmp_drv.f:245:17: + + & xlai, zlvl, swdn, tem, psfc,fdown,t2v,tbot + 1 +Warning: Unused variable ‘xlai’ declared at (1) [-Wunused-variable] +[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o +[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o +[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90:1874:34: + + real(kind=kind_phys) :: aden,akqs,bden,besh,besm,cden,cf,dtozs,ell,eloq2,eloq4 + 1 +Warning: Unused variable ‘aden’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90:1874:44: + + real(kind=kind_phys) :: aden,akqs,bden,besh,besm,cden,cf,dtozs,ell,eloq2,eloq4 + 1 +Warning: Unused variable ‘bden’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90:1874:49: + + real(kind=kind_phys) :: aden,akqs,bden,besh,besm,cden,cf,dtozs,ell,eloq2,eloq4 + 1 +Warning: Unused variable ‘besh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90:1874:54: + + real(kind=kind_phys) :: aden,akqs,bden,besh,besm,cden,cf,dtozs,ell,eloq2,eloq4 + 1 +Warning: Unused variable ‘besm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90:1874:59: + + real(kind=kind_phys) :: aden,akqs,bden,besh,besm,cden,cf,dtozs,ell,eloq2,eloq4 + 1 +Warning: Unused variable ‘cden’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90:1839:35: + + subroutine vdifq(lmh,dtdif,q2,el,z, & + 1 +Warning: Unused dummy argument ‘el’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90:1874:72: + + real(kind=kind_phys) :: aden,akqs,bden,besh,besm,cden,cf,dtozs,ell,eloq2,eloq4 1 -Warning: Missing actual argument for argument ‘s’ at (1) -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp GNU -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -ffree-form -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 99%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 99%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/gnu/8.3.0/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -cpp -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fcheck=bounds -fbacktrace -fno-range-check -fopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src -fopenmp -ffree-line-length-none -O0 -g -fPIC -fdefault-real-8 -fdefault-double-8 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -[100%] Linking Fortran static library libccppphys.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics && /usr/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_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/mfscu.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_aerosols.f.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/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -make[2]: Nothing to be done for 'preinstall'. -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Debug" --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib/libccpp.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib/cmake/ccpp-config-debug.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_xml.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_utils.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_dl.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_dl.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_errors.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fields.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_strings.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_suite.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_types.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_xml.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_api.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib/libccppphys.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib/cmake/ccppphys-config-debug.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_stochastics_cap.mod -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build' -CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" nemsinstall +Warning: Unused variable ‘ell’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90:1874:78: + + real(kind=kind_phys) :: aden,akqs,bden,besh,besm,cden,cf,dtozs,ell,eloq2,eloq4 + 1 +Warning: Unused variable ‘eloq2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90:1874:84: + + real(kind=kind_phys) :: aden,akqs,bden,besh,besm,cden,cf,dtozs,ell,eloq2,eloq4 + 1 +Warning: Unused variable ‘eloq4’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90:1875:35: + + real(kind=kind_phys) :: elqdz,esh,esm,esqhf,ghl,gml,q1l,rden,rdz + 1 +Warning: Unused variable ‘elqdz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90:1875:39: + + real(kind=kind_phys) :: elqdz,esh,esm,esqhf,ghl,gml,q1l,rden,rdz + 1 +Warning: Unused variable ‘esh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90:1875:43: + + real(kind=kind_phys) :: elqdz,esh,esm,esqhf,ghl,gml,q1l,rden,rdz + 1 +Warning: Unused variable ‘esm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90:1875:53: + + real(kind=kind_phys) :: elqdz,esh,esm,esqhf,ghl,gml,q1l,rden,rdz + 1 +Warning: Unused variable ‘ghl’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90:1875:57: + + real(kind=kind_phys) :: elqdz,esh,esm,esqhf,ghl,gml,q1l,rden,rdz + 1 +Warning: Unused variable ‘gml’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90:1875:61: + + real(kind=kind_phys) :: elqdz,esh,esm,esqhf,ghl,gml,q1l,rden,rdz + 1 +Warning: Unused variable ‘q1l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90:1875:66: + + real(kind=kind_phys) :: elqdz,esh,esm,esqhf,ghl,gml,q1l,rden,rdz + 1 +Warning: Unused variable ‘rden’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90:1875:70: + + real(kind=kind_phys) :: elqdz,esh,esm,esqhf,ghl,gml,q1l,rden,rdz + 1 +Warning: Unused variable ‘rdz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90:1729:24: + + subroutine prodq2(lmh,dtturbl,ustar,s2,ri,q2,el,z,akm,akh, & + 1 +Warning: Unused dummy argument ‘lmh’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90:1581:58: + + real(kind=kind_phys) :: a,aden,b,bden,aubr,bubr,blmx,el0,eloq2x,ghl,s2l, & + 1 +Warning: Unused variable ‘blmx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90:1493:47: + + s2,gh,ri,el,hpbl,lpbl,lmxl,ct, & + 1 +Warning: Unused dummy argument ‘lmxl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90:177:60: + + real(kind=kind_phys) :: amf1,amf2,bmf2,amf3,bmf3,amf4,bmf4,sflux0,snlflux0 + 1 +Warning: Unused variable ‘amf4’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90:177:65: + + real(kind=kind_phys) :: amf1,amf2,bmf2,amf3,bmf3,amf4,bmf4,sflux0,snlflux0 + 1 +Warning: Unused variable ‘bmf4’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90:33:36: + + g,rd,cp,rv,ep1,ep2,xlv, & + 1 +Warning: Unused dummy argument ‘ep2’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90:185:77: + + real(kind=kind_phys), dimension(im) :: hol + 1 +Warning: Unused variable ‘hol’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90:164:22: + + integer :: n,i,k,l,ic + 1 +Warning: Unused variable ‘l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/shinhongvdif.F90:164:16: + + integer :: n,i,k,l,ic + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:6713:19: + + jtem = (aphi - blto) * dlati + 1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:3354:22: + + kxs=sqrt(4*nx-2.5) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:3519:20: + + kxs=sqrt(4*nx-2.5) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:7069:19: + + fha4 = fha + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:7145:15: + + fha4 = fha + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:8660:5: + + 80 continue + 1 +Warning: Label 80 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:8472:13: + + fha4=fha + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:6867:5: + + 70 write(6,6000) + 1 +Warning: Label 70 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:5341:55: + + & rla,rlo,len,mode,percrit,lgchek,me) + 1 +Warning: Unused dummy argument ‘lgchek’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:5341:48: + + & rla,rlo,len,mode,percrit,lgchek,me) + 1 +Warning: Unused dummy argument ‘percrit’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:4607:41: + + subroutine merge(len,lsoil,iy,im,id,ih,fh,deltsfc, & + 1 +Warning: Unused dummy argument ‘id’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:4607:44: + + subroutine merge(len,lsoil,iy,im,id,ih,fh,deltsfc, & + 1 +Warning: Unused dummy argument ‘ih’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:4607:38: + + subroutine merge(len,lsoil,iy,im,id,ih,fh,deltsfc, & + 1 +Warning: Unused dummy argument ‘im’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:4629:43: + + & irtvet,irtsot,irtalf, landice, me) + 1 +Warning: Unused dummy argument ‘irtalf’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:4627:29: + + & irttg3,irtscv,irtacn,irtsmc,irtstc,irtveg, & + 1 +Warning: Unused dummy argument ‘irttg3’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:4607:35: + + subroutine merge(len,lsoil,iy,im,id,ih,fh,deltsfc, & + 1 +Warning: Unused dummy argument ‘iy’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:4635:43: + + & irtalb,irtsno,irttsf,irtwet,j & + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:4616:36: + + & tsfanl,tsfan2,wetanl,snoanl,zoranl,albanl,aisanl,& + 1 +Warning: Unused dummy argument ‘tsfan2’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:4616:43: + + & tsfanl,tsfan2,wetanl,snoanl,zoranl,albanl,aisanl,& + 1 +Warning: Unused dummy argument ‘wetanl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:4610:36: + + & tsffcs,wetfcs,snofcs,zorfcs,albfcs,aisfcs, & + 1 +Warning: Unused dummy argument ‘wetfcs’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:5998:47: + + & len,lsoil,snoanl,aisanl,slianl,tsfanl,albanl, & + 1 +Warning: Unused dummy argument ‘aisanl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:5998:68: + + & len,lsoil,snoanl,aisanl,slianl,tsfanl,albanl, & + 1 +Warning: Unused dummy argument ‘albanl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:6000:44: + + & smcclm,tsfsmx,albomx,zoromx, me) + 1 +Warning: Unused dummy argument ‘albomx’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:6004:24: + + integer kount,me,k,i,lsoil,len + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:5997:58: + + subroutine qcbyfc(tsffcs,snofcs,qctsfs,qcsnos,qctsfi, & + 1 +Warning: Unused dummy argument ‘qctsfi’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:5999:37: + + & zoranl,smcanl, & + 1 +Warning: Unused dummy argument ‘smcanl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:6000:30: + + & smcclm,tsfsmx,albomx,zoromx, me) + 1 +Warning: Unused dummy argument ‘smcclm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:6000:37: + + & smcclm,tsfsmx,albomx,zoromx, me) + 1 +Warning: Unused dummy argument ‘tsfsmx’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:5999:30: + + & zoranl,smcanl, & + 1 +Warning: Unused dummy argument ‘zoranl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:6000:51: + + & smcclm,tsfsmx,albomx,zoromx, me) + 1 +Warning: Unused dummy argument ‘zoromx’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:5205:41: + + subroutine qcsice(ais,glacir,amxice,aicice,aicsea,sllnd,slmask, & + 1 +Warning: Unused dummy argument ‘amxice’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:3719:35: + + & tg3anl,cvanl ,cvbanl,cvtanl, & + 1 +Warning: Unused dummy argument ‘cvanl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:3719:43: + + & tg3anl,cvanl ,cvbanl,cvtanl, & + 1 +Warning: Unused dummy argument ‘cvbanl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:3719:50: + + & tg3anl,cvanl ,cvbanl,cvtanl, & + 1 +Warning: Unused dummy argument ‘cvtanl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:3740:50: + + & kpdais,kpdzor,kpdtg3,kpdacn,kpdscv,j & + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:3725:29: + + & kprvet,kpdsot,kpdalf, & + 1 +Warning: Unused dummy argument ‘kprvet’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:3720:43: + + & smcanl,stcanl,slianl,scvanl,acnanl,veganl, & + 1 +Warning: Unused dummy argument ‘slianl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:8405:55: + + & lgrib,j,ndata,i,inttyp,jmax,imax,ijmax,ij,jday,len,iret, & + 1 +Warning: Unused variable ‘ij’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:8407:33: + + & monend,jy,iy4,kmami,iret2,jj,w3kindreal,w3kindint + 1 +Warning: Unused variable ‘kmami’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:6105:47: + + real*4 :: dummy(imax,jmax) + 1 +Warning: Unused variable ‘dummy’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:2990:20: + + integer i,j,ii,jj,jmax,imax,iret + 1 +Warning: Unused variable ‘ii’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:6910:55: + + &, gaus, blno, blto, me,lprnt,iprnt, fnalbc2, ialb & + 1 +Warning: Unused dummy argument ‘iprnt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:6924:53: + + & kpdvet,kpdsot,kpdstc,kpdveg,jmsk,imsk,j,ialb & + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:6908:37: + + & deltsfc, lanom & + 1 +Warning: Unused dummy argument ‘lanom’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:6910:49: + + &, gaus, blno, blto, me,lprnt,iprnt, fnalbc2, ialb & + 1 +Warning: Unused dummy argument ‘lprnt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:6918:44: + + & wei2s,fh,stcmon1s,blto,blno,deltsfc,rjdayh2 + 1 +Warning: Unused variable ‘stcmon1s’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:8079:46: + + character(len=80) :: errmsg + 1 +Warning: Unused variable ‘errmsg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:8231:69: + + & jmsk,len,lugb,kpds5,mon,lskip,lgrib,ndata,lugi,me,kmami & + 1 +Warning: Unused variable ‘kmami’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:6586:43: + + & rnlat,dxout,dphi,dlat,facns,tem,blno, & + 1 +Warning: Unused variable ‘dphi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:6586:38: + + & rnlat,dxout,dphi,dlat,facns,tem,blno, & + 1 +Warning: Unused variable ‘dxout’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:6586:54: + + & rnlat,dxout,dphi,dlat,facns,tem,blno, & + 1 +Warning: Unused variable ‘facns’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:6583:28: + + integer i1,i2,j2,ishft,i,jj,j1,jtem,jmxout,imxin,jmxin,imxout, & + 1 +Warning: Unused variable ‘ishft’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:6586:58: + + & rnlat,dxout,dphi,dlat,facns,tem,blno, & + 1 +Warning: Unused variable ‘tem’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:6580:27: + + & wlon,rnlat,rlnout,rltout,gaus,blno, blto) + 1 +Warning: Unused dummy argument ‘wlon’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:2723:36: + + & iret, me,kpds5,kdata,i,w3kindreal,w3kindint + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:487:35: + + & tg3fcs(len), acnfcs(len), cnpfcs(len), & + 1 +Warning: Unused variable ‘acnfcs’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:115:53: + + & aislim,snwmin,snwmax,cplrl,cplrs, & + 1 +Warning: Unused variable ‘cplrl’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:115:59: + + & aislim,snwmin,snwmax,cplrl,cplrs, & + 1 +Warning: Unused variable ‘cplrs’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:117:38: + + & csotl,cvwgs,cvetl,cvets,calfs, & + 1 +Warning: Unused variable ‘cvwgs’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:499:38: + + real (kind=kind_io8) f10m (len) + 1 +Warning: Unused variable ‘f10m’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:118:40: + + & fcalfl,fcalfs,ccvt,ccnp,ccv,ccvb, & + 1 +Warning: Unused variable ‘fcalfs’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:120:33: + + & grbmsk,ctsfl,deltf,caisl,caiss, & + 1 +Warning: Unused variable ‘grbmsk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:119:57: + + & calbl,calfl,calbs,ctsfs,grboro, & + 1 +Warning: Unused variable ‘grboro’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:526:24: + + character*32 label + 1 +Warning: Unused variable ‘label’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:70:55: + + &, cvfcs,cvbfcs,cvtfcs,me,nlunit & + 1 +Warning: Unused dummy argument ‘nlunit’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:161:25: + + integer num_parthds + 1 +Warning: Unused variable ‘num_parthds’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:128:62: + + & falfs,falfl,fh,crit,zsca,ztsfc,tem1,tem2 & + 1 +Warning: Unused variable ‘tem1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:128:67: + + & falfs,falfl,fh,crit,zsca,ztsfc,tem1,tem2 & + 1 +Warning: Unused variable ‘tem2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:4458:17: + + integer i,j,len,lsoil,k + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:4454:37: + + subroutine bktges(smcfcs,slianl,stcfcs,len,lsoil) + 1 +Warning: Unused dummy argument ‘slianl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/sfcsub.F:3025:0: + + data(imax-i+1,jj) = work(i,j) + +Warning: ‘jj’ may be used uninitialized in this function [-Wmaybe-uninitialized] +[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:2067:69: + + real(kind=kind_phys) :: S(levs), S1(levs), F(levs), F1(levs) + 1 +Warning: Unused variable ‘f1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:2069:31: + + integer :: i, k + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:2067:49: + + real(kind=kind_phys) :: S(levs), S1(levs), F(levs), F1(levs) + 1 +Warning: Unused variable ‘s1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:2033:31: + + integer :: i, k + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:353:48: + + real(kind=kind_phys) :: belpmin, dsmin, dsmax + 1 +Warning: Unused variable ‘belpmin’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:271:46: + + & DUSFC, DVSFC, xlatd, sinlat, coslat, sparea, + 1 +Warning: Unused dummy argument ‘coslat’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:387:70: + + & ROLL, bnv2bar, SCOR, DTFAC, XLINV, DELKS, DELKS1 + 1 +Warning: Unused variable ‘delks1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:390:68: + + real(kind=kind_phys) :: taub(im), taulin(im), heff, hsat, hdis + 1 +Warning: Unused variable ‘hdis’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:411:43: + + &, kmps, idir, nwd, klcap, kp1, kmpbl, kmll + 1 +Warning: Unused variable ‘klcap’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:412:48: + + &, k_mtb, k_zlow, ktrial, klevm1, i, j, k + 1 +Warning: Unused variable ‘klevm1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:412:40: + + &, k_mtb, k_zlow, ktrial, klevm1, i, j, k + 1 +Warning: Unused variable ‘ktrial’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:298:9: + + use cires_ugwp_module, only : kxw, max_kdis, max_axyz + 1 +Warning: Unused module variable ‘kxw’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:352:48: + + real(kind=kind_phys) :: shilmin, sgrmax, sgrmin + 1 +Warning: Unused variable ‘shilmin’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:401:62: + + &, scork, rscor, hd, fro, sira + 1 +Warning: Unused variable ‘sira’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:399:32: + + &, ti, rdz, dw2, shr2, bvf2 + 1 +Warning: Unused variable ‘ti’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:403:50: + + &, grav2, rcpdt, windik, wdir + 1 +Warning: Unused variable ‘windik’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:363:69: + + real(kind=kind_phys), dimension(im) :: OA, CLX , elvmax, wk + 1 +Warning: Unused variable ‘wk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1363:45: + + real :: kzw2, kzw3, kdsat, cdf2, cdf1, wdop2 + 1 +Warning: Unused variable ‘cdf1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1262:59: + + & prsl, prsi, philg, xlatd, sinlat, coslat, + 1 +Warning: Unused dummy argument ‘coslat’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1260:52: + + subroutine fv3_ugwp_solv2_v0(klon, klev, dtime, + 1 +Warning: Unused dummy argument ‘dtime’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1363:33: + + real :: kzw2, kzw3, kdsat, cdf2, cdf1, wdop2 + 1 +Warning: Unused variable ‘kdsat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1363:26: + + real :: kzw2, kzw3, kdsat, cdf2, cdf1, wdop2 + 1 +Warning: Unused variable ‘kzw3’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1262:21: + + & prsl, prsi, philg, xlatd, sinlat, coslat, + 1 +Warning: Unused dummy argument ‘prsl’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1385:45: + + real :: v_kzi, v_kzw, v_cdp, v_wdp, sc, tx1 + 1 +Warning: Unused variable ‘sc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1262:43: + + & prsl, prsi, philg, xlatd, sinlat, coslat, + 1 +Warning: Unused dummy argument ‘xlatd’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1368:21: + + real :: zatmp, zfluxs, zdep, zfluxsq, zulm, zdft, ze1, ze2 + 1 +Warning: Unused variable ‘zatmp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1372:38: + + real :: zthstd,zrhostd,zbvfstd + 1 +Warning: Unused variable ‘zbvfstd’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1368:56: + + real :: zatmp, zfluxs, zdep, zfluxsq, zulm, zdft, ze1, ze2 + 1 +Warning: Unused variable ‘zdft’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1368:44: + + real :: zatmp, zfluxs, zdep, zfluxsq, zulm, zdft, ze1, ze2 + 1 +Warning: Unused variable ‘zfluxsq’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1374:28: + + real :: zhook_handle + 1 +Warning: Unused variable ‘zhook_handle’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1371:28: + + real :: zdelp,zrgpts + 1 +Warning: Unused variable ‘zrgpts’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1372:30: + + real :: zthstd,zrhostd,zbvfstd + 1 +Warning: Unused variable ‘zrhostd’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1372:22: + + real :: zthstd,zrhostd,zbvfstd + 1 +Warning: Unused variable ‘zthstd’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1368:50: + + real :: zatmp, zfluxs, zdep, zfluxsq, zulm, zdft, ze1, ze2 + 1 +Warning: Unused variable ‘zulm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1921:47: + + real(kind=kind_phys) :: eps_shr, eps_bn2, eps_dis + 1 +Warning: Unused variable ‘eps_bn2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1921:56: + + real(kind=kind_phys) :: eps_shr, eps_bn2, eps_dis + 1 +Warning: Unused variable ‘eps_dis’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1921:38: + + real(kind=kind_phys) :: eps_shr, eps_bn2, eps_dis + 1 +Warning: Unused variable ‘eps_shr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1865:46: + + & me, master, kdt ) + 1 +Warning: Unused dummy argument ‘kdt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1865:41: + + & me, master, kdt ) + 1 +Warning: Unused dummy argument ‘master’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1865:33: + + & me, master, kdt ) + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1862:42: + + & prsl, prsi, phil, prslk, + 1 +Warning: Unused dummy argument ‘prsi’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1943:37: + + real(kind=kind_phys) :: w1, w2, w3 + 1 +Warning: Unused variable ‘w2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ugwp_driver_v0.F:1943:41: + + real(kind=kind_phys) :: w1, w2, w3 + 1 +Warning: Unused variable ‘w3’ declared at (1) [-Wunused-variable] +[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms.F90:235:36: + + character(len=64) :: iospec_ieee32 = '-N ieee_32' + 1 +Warning: Unused PRIVATE module variable ‘iospec_ieee32’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fms/fms.F90:232:34: + + logical :: read_all_pe = .true. + 1 +Warning: Unused PRIVATE module variable ‘read_all_pe’ declared at (1) [-Wunused-value] +[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ysuvdif.F90:102:77: + + real(kind=kind_phys), dimension( im ) :: hol + 1 +Warning: Unused variable ‘hol’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ysuvdif.F90:162:28: + + integer :: n,i,k,l,ic,is,kk + 1 +Warning: Unused variable ‘is’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ysuvdif.F90:163:29: + + integer :: klpbl, ktrace1, ktrace2, ktrace3 + 1 +Warning: Unused variable ‘ktrace1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ysuvdif.F90:163:38: + + integer :: klpbl, ktrace1, ktrace2, ktrace3 + 1 +Warning: Unused variable ‘ktrace2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ysuvdif.F90:163:47: + + integer :: klpbl, ktrace1, ktrace2, ktrace3 + 1 +Warning: Unused variable ‘ktrace3’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ysuvdif.F90:162:22: + + integer :: n,i,k,l,ic,is,kk + 1 +Warning: Unused variable ‘l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/ysuvdif.F90:162:16: + + integer :: n,i,k,l,ic,is,kk + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o +[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/time_manager/time_manager.F90:2913:30: + + days = days_in_400_year_period / 400 + 1 +Warning: Integer division truncated to constant ‘365’ at (1) [-Winteger-division] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/time_manager/time_manager.F90:2914:10: + + seconds = 86400*(days_in_400_year_period/400. - days) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/time_manager/time_manager.F90:1158:14: + + time_divide = d1 / d2 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/time_manager/time_manager.F90:1064:12: + + num_sec = tick_prod/dble(ticks_per_second) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/time_manager/time_manager.F90:1066:12: + + ticks = tick_prod - num_sec * ticks_per_second + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/time_manager/time_manager.F90:1078:7: + + days = sec_prod / dble(seconds_per_day) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/time_manager/time_manager.F90:1079:10: + + seconds = sec_prod - dble(days) * dble(seconds_per_day) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/time_manager/time_manager.F90:1362:7: + + days = div/(dseconds_per_day*dticks_per_second) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/time_manager/time_manager.F90:1363:10: + + seconds = div/dticks_per_second - days*dseconds_per_day + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/time_manager/time_manager.F90:1364:8: + + ticks = div - (days*dseconds_per_day + dble(seconds))*dticks_per_second + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/time_manager/time_manager.F90:3042:34: + + function days_in_year_no_leap(Time) + 1 +Warning: Unused dummy argument ‘time’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/time_manager/time_manager.F90:3002:33: + + function days_in_year_thirty(Time) + 1 +Warning: Unused dummy argument ‘time’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/time_manager/time_manager.F90:2848:31: + + function leap_year_no_leap(Time) + 1 +Warning: Unused dummy argument ‘time’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/time_manager/time_manager.F90:2835:30: + + function leap_year_thirty(Time) + 1 +Warning: Unused dummy argument ‘time’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/time_manager/time_manager.F90:2719:34: + + function days_in_month_thirty(Time) + 1 +Warning: Unused dummy argument ‘time’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/horiz_interp/horiz_interp_bicubic.F90:80:44: + + logical :: initialized_bicubic = .false. + 1 +Warning: Unused PRIVATE module variable ‘initialized_bicubic’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/horiz_interp/horiz_interp_bicubic.F90:83:32: + + real, save :: missing = -1e33 + 1 +Warning: Unused PRIVATE module variable ‘missing’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/time_manager/time_manager.F90:2623:0: + + if(error_handler('function decrement_date', err_msg_local, err_msg)) return + +Warning: control reaches end of non-void function [-Wreturn-type] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/time_manager/time_manager.F90:2440:0: -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems + if(error_handler('function increment_time', err_msg_local, err_msg)) return + +Warning: control reaches end of non-void function [-Wreturn-type] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/horiz_interp/horiz_interp_bicubic.F90:452:78: + + subroutine horiz_interp_bicubic( Interp, data_in, data_out, verbose, mask_in, mask_out, missing_value, missing_permit) + 1 +Warning: Unused dummy argument ‘mask_in’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/horiz_interp/horiz_interp_bicubic.F90:452:119: + + subroutine horiz_interp_bicubic( Interp, data_in, data_out, verbose, mask_in, mask_out, missing_value, missing_permit) + 1 +Warning: Unused dummy argument ‘missing_permit’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/horiz_interp/horiz_interp_bicubic.F90:452:103: + subroutine horiz_interp_bicubic( Interp, data_in, data_out, verbose, mask_in, mask_out, missing_value, missing_permit) + 1 +Warning: Unused dummy argument ‘missing_value’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/time_manager/time_manager.F90:2132:0: + + end function set_date_c +Warning: control reaches end of non-void function [-Wreturn-type] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/time_manager/time_manager.F90:704:0: -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_cplfields.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=Y # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_data.F90 -o CCPP_layer/CCPP_data.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=Y # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... - -Build CCPP layer ... - -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DOVERLOAD_R4 CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c FV3GFS_io.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_write_internal_state.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c post_gfs_stub.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -f951: Warning: Nonexistent include directory ‘./include’ [-Wmissing-include-dirs] -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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_fv3_config.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c time_utils.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c atmos_model.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -c module_fcst_grid_comp.F90 -mpif90 -f90=gfortran -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -cpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 -a - module_fv3_config.o -a - module_fcst_grid_comp.o -a - time_utils.o -a - fv3_cap.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; \ -gmake nems DEBUG=Y \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL CCPP_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x + if(error_handler('function decrement_time', err_msg_local, err_msg)) return + +Warning: control reaches end of non-void function [-Wreturn-type] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/time_manager/time_manager.F90:600:0: -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) gnu/8.3.0 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems + if(error_handler('function increment_time', err_msg_local, err_msg)) return + +Warning: control reaches end of non-void function [-Wreturn-type] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/time_manager/time_manager.F90:417:0: + + end function set_time_c + +Warning: control reaches end of non-void function [-Wreturn-type] +[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90:524:1: + + rhq(lev) = rh(l) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90:879:45: + + subroutine calwxt_bourg(lm,lp1,rn,g,t,q,pmid,pint,zint,ptype) + 1 +Warning: Unused dummy argument ‘q’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90:495:17: + + integer*4 i, k1, lll, k2, toodry + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90:505:24: + + integer j,l,lev,ii + 1 +Warning: Unused variable ‘ii’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90:505:15: + + integer j,l,lev,ii + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90:476:56: + + subroutine calwxt_ramer(lm,lp1,t,q,pmid,rh,td,pint,ptyp) + 1 +Warning: Unused dummy argument ‘pint’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90:476:40: + + subroutine calwxt_ramer(lm,lp1,t,q,pmid,rh,td,pint,ptyp) + 1 +Warning: Unused dummy argument ‘q’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90:53:45: + + time_dominant,btim,timef,ranl(2) + 1 +Warning: Unused variable ‘btim’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90:50:28: + + integer i,iwx,isno,iip,izr,irain,k,k1 + 1 +Warning: Unused variable ‘iip’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90:50:38: + + integer i,iwx,isno,iip,izr,irain,k,k1 + 1 +Warning: Unused variable ‘irain’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90:50:24: + + integer i,iwx,isno,iip,izr,irain,k,k1 + 1 +Warning: Unused variable ‘isno’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90:50:32: + + integer i,iwx,isno,iip,izr,irain,k,k1 + 1 +Warning: Unused variable ‘izr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90:10:34: + + subroutine calpreciptype(kdt,nrcm,im,ix,lm,lp1,randomno, & + 1 +Warning: Unused dummy argument ‘kdt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90:52:68: + + time_vert,time_ncep,time_ramer,time_bourg,time_revised,& + 1 +Warning: Unused variable ‘time_bourg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90:53:40: + + time_dominant,btim,timef,ranl(2) + 1 +Warning: Unused variable ‘time_dominant’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90:52:46: + + time_vert,time_ncep,time_ramer,time_bourg,time_revised,& + 1 +Warning: Unused variable ‘time_ncep’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90:52:57: + + time_vert,time_ncep,time_ramer,time_bourg,time_revised,& + 1 +Warning: Unused variable ‘time_ramer’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90:52:81: + + time_vert,time_ncep,time_ramer,time_bourg,time_revised,& + 1 +Warning: Unused variable ‘time_revised’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90:52:36: + + time_vert,time_ncep,time_ramer,time_bourg,time_revised,& + 1 +Warning: Unused variable ‘time_vert’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90:53:51: + + time_dominant,btim,timef,ranl(2) + 1 +Warning: Unused variable ‘timef’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90:13:41: + + phii,tskin, & !input + 1 +Warning: Unused dummy argument ‘tskin’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90:11:35: + + xlat,xlon, & + 1 +Warning: Unused dummy argument ‘xlat’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/calpreciptype.f90:11:40: + + xlat,xlon, & + 1 +Warning: Unused dummy argument ‘xlon’ at (1) [-Wunused-dummy-argument] +[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o +[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/horiz_interp/horiz_interp_conserve.F90:967:80: + + subroutine horiz_interp_conserve_version2 ( Interp, data_in, data_out, verbose ) + 1 +Warning: Unused dummy argument ‘verbose’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/horiz_interp/horiz_interp_conserve.F90:632:73: + + mask_in, mask_out, verbose) + 1 +Warning: Unused dummy argument ‘verbose’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/horiz_interp/horiz_interp_conserve.F90:536:73: + + mask_in, mask_out, verbose) + 1 +Warning: Unused dummy argument ‘verbose’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/horiz_interp/horiz_interp_conserve.F90:346:73: + + mask_in, mask_out, verbose) + 1 +Warning: Unused dummy argument ‘verbose’ at (1) [-Wunused-dummy-argument] +[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcycle.F90:61:21: + + SMCFC1 (Model%nx*Model%ny*Model%lsoil), & + 1 +Warning: Unused variable ‘exists’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/gcycle.F90:60:45: + + ALBFC1 (Model%nx*Model%ny*4), & + 1 +Warning: Unused variable ‘ios’ declared at (1) [-Wunused-variable] +[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o +[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o +[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/horiz_interp/horiz_interp_spherical.F90:655:22: + + step_size = sqrt(real(map_src_size) ) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/horiz_interp/horiz_interp_spherical.F90:519:37: + + real :: min_in, max_in, avg_in, min_out, max_out, avg_out, sum + 1 +Warning: Unused variable ‘avg_in’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/horiz_interp/horiz_interp_spherical.F90:519:64: + + real :: min_in, max_in, avg_in, min_out, max_out, avg_out, sum + 1 +Warning: Unused variable ‘avg_out’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/horiz_interp/horiz_interp_spherical.F90:518:22: + + integer :: m, n, i, j, k, miss_in, miss_out, i1, i2, j1, j2, iverbose + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/horiz_interp/horiz_interp_spherical.F90:518:25: + + integer :: m, n, i, j, k, miss_in, miss_out, i1, i2, j1, j2, iverbose + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/horiz_interp/horiz_interp_spherical.F90:506:80: + + subroutine horiz_interp_spherical_wght( Interp, wt, verbose, mask_in, mask_out, missing_value) + 1 +Warning: Unused dummy argument ‘mask_out’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/horiz_interp/horiz_interp_spherical.F90:519:29: + + real :: min_in, max_in, avg_in, min_out, max_out, avg_out, sum + 1 +Warning: Unused variable ‘max_in’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/horiz_interp/horiz_interp_spherical.F90:519:55: + + real :: min_in, max_in, avg_in, min_out, max_out, avg_out, sum + 1 +Warning: Unused variable ‘max_out’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/horiz_interp/horiz_interp_spherical.F90:519:21: + + real :: min_in, max_in, avg_in, min_out, max_out, avg_out, sum + 1 +Warning: Unused variable ‘min_in’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/horiz_interp/horiz_interp_spherical.F90:519:46: + + real :: min_in, max_in, avg_in, min_out, max_out, avg_out, sum + 1 +Warning: Unused variable ‘min_out’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/horiz_interp/horiz_interp_spherical.F90:518:37: + + integer :: m, n, i, j, k, miss_in, miss_out, i1, i2, j1, j2, iverbose + 1 +Warning: Unused variable ‘miss_in’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/horiz_interp/horiz_interp_spherical.F90:518:47: + + integer :: m, n, i, j, k, miss_in, miss_out, i1, i2, j1, j2, iverbose + 1 +Warning: Unused variable ‘miss_out’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/horiz_interp/horiz_interp_spherical.F90:506:95: + + subroutine horiz_interp_spherical_wght( Interp, wt, verbose, mask_in, mask_out, missing_value) + 1 +Warning: Unused dummy argument ‘missing_value’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/horiz_interp/horiz_interp_spherical.F90:97:19: + + integer :: unit, ierr, io + 1 +Warning: Unused variable ‘unit’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfpbl.f:69:20: + + integer i, j, k, n, kmpbl + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/mfpbl.f:79:50: + + & ptem, ptem1, ptem2, + 1 +Warning: Unused variable ‘ptem2’ declared at (1) [-Wunused-variable] +[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:441:20: + + klev(i) = k + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:216:61: + + dcheat3d, precip2d, cld_klevs2d, scheat3d) + 1 +Warning: Unused dummy argument ‘cld_klevs2d’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:216:38: + + dcheat3d, precip2d, cld_klevs2d, scheat3d) + 1 +Warning: Unused dummy argument ‘dcheat3d’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:215:67: + + subroutine trig3d_dconv(nx, ny, nz, U, V, T, Q, P3d, PS, delp, delz, lon, lat, pmid, trig3d_conv, & + 1 +Warning: Unused dummy argument ‘delp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:215:73: + + subroutine trig3d_dconv(nx, ny, nz, U, V, T, Q, P3d, PS, delp, delz, lon, lat, pmid, trig3d_conv, & + 1 +Warning: Unused dummy argument ‘delz’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:230:18: + + integer :: k + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:215:83: + + subroutine trig3d_dconv(nx, ny, nz, U, V, T, Q, P3d, PS, delp, delz, lon, lat, pmid, trig3d_conv, & + 1 +Warning: Unused dummy argument ‘lat’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:215:78: + + subroutine trig3d_dconv(nx, ny, nz, U, V, T, Q, P3d, PS, delp, delz, lon, lat, pmid, trig3d_conv, & + 1 +Warning: Unused dummy argument ‘lon’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:215:57: + + subroutine trig3d_dconv(nx, ny, nz, U, V, T, Q, P3d, PS, delp, delz, lon, lat, pmid, trig3d_conv, & + 1 +Warning: Unused dummy argument ‘p3d’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:215:89: + + subroutine trig3d_dconv(nx, ny, nz, U, V, T, Q, P3d, PS, delp, delz, lon, lat, pmid, trig3d_conv, & + 1 +Warning: Unused dummy argument ‘pmid’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:216:48: + + dcheat3d, precip2d, cld_klevs2d, scheat3d) + 1 +Warning: Unused dummy argument ‘precip2d’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:215:61: + + subroutine trig3d_dconv(nx, ny, nz, U, V, T, Q, P3d, PS, delp, delz, lon, lat, pmid, trig3d_conv, & + 1 +Warning: Unused dummy argument ‘ps’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:215:52: + + subroutine trig3d_dconv(nx, ny, nz, U, V, T, Q, P3d, PS, delp, delz, lon, lat, pmid, trig3d_conv, & + 1 +Warning: Unused dummy argument ‘q’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:216:71: + + dcheat3d, precip2d, cld_klevs2d, scheat3d) + 1 +Warning: Unused dummy argument ‘scheat3d’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:215:49: + + subroutine trig3d_dconv(nx, ny, nz, U, V, T, Q, P3d, PS, delp, delz, lon, lat, pmid, trig3d_conv, & + 1 +Warning: Unused dummy argument ‘t’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:215:102: + + subroutine trig3d_dconv(nx, ny, nz, U, V, T, Q, P3d, PS, delp, delz, lon, lat, pmid, trig3d_conv, & + 1 +Warning: Unused dummy argument ‘trig3d_conv’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:215:43: + + subroutine trig3d_dconv(nx, ny, nz, U, V, T, Q, P3d, PS, delp, delz, lon, lat, pmid, trig3d_conv, & + 1 +Warning: Unused dummy argument ‘u’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:215:46: + + subroutine trig3d_dconv(nx, ny, nz, U, V, T, Q, P3d, PS, delp, delz, lon, lat, pmid, trig3d_conv, & + 1 +Warning: Unused dummy argument ‘v’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:166:68: + + subroutine trig3d_okubo( nx, ny, nz, U, V, T, Q, P3d, PS, delp, delz, lon, lat, pmid, trig3d_okw) + 1 +Warning: Unused dummy argument ‘delp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:166:74: + + subroutine trig3d_okubo( nx, ny, nz, U, V, T, Q, P3d, PS, delp, delz, lon, lat, pmid, trig3d_okw) + 1 +Warning: Unused dummy argument ‘delz’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:179:21: + + integer :: k, i, j + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:179:24: + + integer :: k, i, j + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:166:90: + + subroutine trig3d_okubo( nx, ny, nz, U, V, T, Q, P3d, PS, delp, delz, lon, lat, pmid, trig3d_okw) + 1 +Warning: Unused dummy argument ‘pmid’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:166:62: + + subroutine trig3d_okubo( nx, ny, nz, U, V, T, Q, P3d, PS, delp, delz, lon, lat, pmid, trig3d_okw) + 1 +Warning: Unused dummy argument ‘ps’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:166:53: + + subroutine trig3d_okubo( nx, ny, nz, U, V, T, Q, P3d, PS, delp, delz, lon, lat, pmid, trig3d_okw) + 1 +Warning: Unused dummy argument ‘q’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:184:58: + + real :: rlon(nx), rlat(ny) , cosv(ny), tanlat(ny) + 1 +Warning: Unused variable ‘tanlat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:122:68: + + subroutine trig3d_fjets( nx, ny, nz, U, V, T, Q, P3D, PS, delp, delz, lon, lat, pmid, trig3d_fgf) + 1 +Warning: Unused dummy argument ‘delp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:122:74: + + subroutine trig3d_fjets( nx, ny, nz, U, V, T, Q, P3D, PS, delp, delz, lon, lat, pmid, trig3d_fgf) + 1 +Warning: Unused dummy argument ‘delz’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:135:21: + + integer :: k, i, j + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:135:24: + + integer :: k, i, j + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:122:90: + + subroutine trig3d_fjets( nx, ny, nz, U, V, T, Q, P3D, PS, delp, delz, lon, lat, pmid, trig3d_fgf) + 1 +Warning: Unused dummy argument ‘pmid’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:122:62: + + subroutine trig3d_fjets( nx, ny, nz, U, V, T, Q, P3D, PS, delp, delz, lon, lat, pmid, trig3d_fgf) + 1 +Warning: Unused dummy argument ‘ps’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:122:53: + + subroutine trig3d_fjets( nx, ny, nz, U, V, T, Q, P3D, PS, delp, delz, lon, lat, pmid, trig3d_fgf) + 1 +Warning: Unused dummy argument ‘q’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:140:58: + + real :: rlon(nx), rlat(ny) , cosv(ny), tanlat(ny) + 1 +Warning: Unused variable ‘tanlat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:234:46: + + U, V, W, T, Q, delp, delz, p3d, PS, HS, Hyam, Hybm, Hyai, Hybi, & + 1 +Warning: Unused dummy argument ‘hs’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:234:64: + + U, V, W, T, Q, delp, delz, p3d, PS, HS, Hyam, Hybm, Hyai, Hybi, & + 1 +Warning: Unused dummy argument ‘hyai’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:234:52: + + U, V, W, T, Q, delp, delz, p3d, PS, HS, Hyam, Hybm, Hyai, Hybi, & + 1 +Warning: Unused dummy argument ‘hyam’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:234:58: + + U, V, W, T, Q, delp, delz, p3d, PS, HS, Hyam, Hybm, Hyai, Hybi, & + 1 +Warning: Unused dummy argument ‘hybm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:234:15: + + U, V, W, T, Q, delp, delz, p3d, PS, HS, Hyam, Hybm, Hyai, Hybi, & + 1 +Warning: Unused dummy argument ‘w’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:304:35: + + real :: dtot, dmax, daver + 1 +Warning: Unused variable ‘daver’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:287:9: + + (nw, im, levs, dcheat, scheat, precip, icld, xlatd, sinlat, coslat,taub, klev, if_src, nf_src) + 1 +Warning: Unused dummy argument ‘nw’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:287:65: + + (nw, im, levs, dcheat, scheat, precip, icld, xlatd, sinlat, coslat,taub, klev, if_src, nf_src) + 1 +Warning: Unused dummy argument ‘sinlat’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:355:84: + + subroutine get_spectra_tau_nstgw(nw, im, levs, trig_fgf, xlatd, sinlat, coslat, taub, klev, if_src, nf_src) + 1 +Warning: Unused dummy argument ‘coslat’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:370:35: + + real :: dtot, dmax, daver + 1 +Warning: Unused variable ‘daver’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:355:41: + + subroutine get_spectra_tau_nstgw(nw, im, levs, trig_fgf, xlatd, sinlat, coslat, taub, klev, if_src, nf_src) + 1 +Warning: Unused dummy argument ‘nw’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:355:76: + + subroutine get_spectra_tau_nstgw(nw, im, levs, trig_fgf, xlatd, sinlat, coslat, taub, klev, if_src, nf_src) + 1 +Warning: Unused dummy argument ‘sinlat’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:415:83: + + subroutine get_spectra_tau_okw(nw, im, levs, trig_okw, xlatd, sinlat, coslat, taub, klev, if_src, nf_src) + 1 +Warning: Unused dummy argument ‘coslat’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:430:35: + + real :: dtot, dmax, daver + 1 +Warning: Unused variable ‘daver’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:415:39: + + subroutine get_spectra_tau_okw(nw, im, levs, trig_okw, xlatd, sinlat, coslat, taub, klev, if_src, nf_src) + 1 +Warning: Unused dummy argument ‘nw’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:415:75: + + subroutine get_spectra_tau_okw(nw, im, levs, trig_okw, xlatd, sinlat, coslat, taub, klev, if_src, nf_src) + 1 +Warning: Unused dummy argument ‘sinlat’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:415:67: + + subroutine get_spectra_tau_okw(nw, im, levs, trig_okw, xlatd, sinlat, coslat, taub, klev, if_src, nf_src) + 1 +Warning: Unused dummy argument ‘xlatd’ at (1) [-Wunused-dummy-argument] +[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90:447:0: + + if (dtot >= tlim_fgf ) kex = kex+1 + +Warning: ‘tlim_fgf’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90:18:65: + + subroutine ugwp_oro(im, levs, dtp, kdt,me, lprnt, fcor, c2f2, & + 1 +Warning: Unused dummy argument ‘c2f2’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90:34:10: + + use ugwp_oro_init, only : cdmb, cleff, sigfac, hncrit, hpmin, hminmt + 1 +Warning: Unused module variable ‘cdmb’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90:34:10: + + use ugwp_oro_init, only : cdmb, cleff, sigfac, hncrit, hpmin, hminmt + 1 +Warning: Unused module variable ‘cleff’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90:109:76: + + real(kind=kind_phys), dimension(levs) :: drlee, drmtb, drlow, drogw + 1 +Warning: Unused variable ‘drogw’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90:103:24: + + logical icrilv(im) + 1 +Warning: Unused variable ‘icrilv’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90:18:43: + + subroutine ugwp_oro(im, levs, dtp, kdt,me, lprnt, fcor, c2f2, & + 1 +Warning: Unused dummy argument ‘kdt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90:18:53: + + subroutine ugwp_oro(im, levs, dtp, kdt,me, lprnt, fcor, c2f2, & + 1 +Warning: Unused dummy argument ‘lprnt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90:18:46: + + subroutine ugwp_oro(im, levs, dtp, kdt,me, lprnt, fcor, c2f2, & + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90:94:55: + + real(kind_phys), dimension(levs+1) :: taudz, rhoi, rim_z, pint1, zpi + 1 +Warning: Unused variable ‘rhoi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90:94:62: + + real(kind_phys), dimension(levs+1) :: taudz, rhoi, rim_z, pint1, zpi + 1 +Warning: Unused variable ‘rim_z’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90:94:49: + + real(kind_phys), dimension(levs+1) :: taudz, rhoi, rim_z, pint1, zpi + 1 +Warning: Unused variable ‘taudz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90:86:28: + + real(kind_phys) wk(im) + 1 +Warning: Unused variable ‘wk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90:389:50: + + subroutine gw_solver_linsatdis(im, levs, dtp, kdt, me, & + 1 +Warning: Unused dummy argument ‘dtp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90:389:55: + + subroutine gw_solver_linsatdis(im, levs, dtp, kdt, me, & + 1 +Warning: Unused dummy argument ‘kdt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90:389:59: + + subroutine gw_solver_linsatdis(im, levs, dtp, kdt, me, & + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90:390:34: + + taub, klev, if_src, nf_src, nw, ch, naz, spf, xaz, yaz, & + 1 +Warning: Unused dummy argument ‘nf_src’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90:415:68: + + real, dimension(levs) :: u1, v1, t1, dp, pmid, zmid, pex1, & + 1 +Warning: Unused variable ‘pex1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90:391:56: + + fcor, c2f2, u, v, t, q, prsi, delp, prsl, prslk, phii, phil, & + 1 +Warning: Unused dummy argument ‘prslk’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90:423:42: + + real :: chm, ss + 1 +Warning: Unused variable ‘ss’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90:531:47: + + subroutine gw_solver_wmsdis(im, levs, dtp, kdt, me, & + 1 +Warning: Unused dummy argument ‘dtp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90:560:35: + + integer :: i, j, k, ksrc + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90:531:52: + + subroutine gw_solver_wmsdis(im, levs, dtp, kdt, me, & + 1 +Warning: Unused dummy argument ‘kdt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90:531:56: + + subroutine gw_solver_wmsdis(im, levs, dtp, kdt, me, & + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90:532:34: + + taub, klev, if_src, nf_src, nw, ch, naz, spf, xaz, yaz, & + 1 +Warning: Unused dummy argument ‘nf_src’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90:557:66: + + real, dimension(levs) :: u1, v1, t1, dp, pmid, zmid, pex1, q1, rho + 1 +Warning: Unused variable ‘pex1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90:533:56: + + fcor, c2f2, u, v, t, q, prsi, delp, prsl, prslk, phii, phil, & + 1 +Warning: Unused dummy argument ‘prslk’ at (1) [-Wunused-dummy-argument] +[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/axis_utils/axis_utils.F90:709:46: + + integer :: n1, n2, m1, m2, k2, i, n, m + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/axis_utils/axis_utils.F90:710:26: + + real :: w, y1, y2 + 1 +Warning: Unused variable ‘w’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/axis_utils/axis_utils.F90:682:24: + + integer :: n1, n2, i, n, k2, ks, ke + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/axis_utils/axis_utils.F90:683:13: + + real :: w + 1 +Warning: Unused variable ‘w’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/axis_utils/axis_utils.F90:525:32: + + integer :: n1, n2, i, n, ext + 1 +Warning: Unused variable ‘ext’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/axis_utils/axis_utils.F90:148:49: + + subroutine get_axis_bounds(axis,axis_bound,axes,bnd_name,err_msg) + 1 +Warning: Unused dummy argument ‘axes’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/axis_utils/axis_utils.F90:148:58: + + subroutine get_axis_bounds(axis,axis_bound,axes,bnd_name,err_msg) + 1 +Warning: Unused dummy argument ‘bnd_name’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/axis_utils/axis_utils.F90:90:18: + + integer :: i,j + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o +[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_utils.F90:130:4: + + 121 format(i5, 2x, 3(2x, F10.3), 2(2x, E10.3)) + 1 +Warning: Label 121 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_utils.F90:2:59: + + subroutine um_flow(nz, klow, ktop, up, vp, tp, qp, dp, zpm, zpi, & + 1 +Warning: Unused dummy argument ‘dp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_utils.F90:2:69: + + subroutine um_flow(nz, klow, ktop, up, vp, tp, qp, dp, zpm, zpi, & + 1 +Warning: Unused dummy argument ‘zpi’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_utils.F90:75:44: + + real :: zul, bvl + 1 +Warning: Unused variable ‘bvl’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_utils.F90:64:52: + + subroutine mflow_tauz(levs, up, vp, tp, qp, dp, zpm, zpi, & + 1 +Warning: Unused dummy argument ‘dp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_utils.F90:79:31: + + real :: vtkp, vtk, dzp + 1 +Warning: Unused variable ‘dzp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_utils.F90:78:26: + + real :: vtj, rhok, bnv2, rdz + 1 +Warning: Unused variable ‘rhok’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_utils.F90:74:42: + + real, dimension(levs) :: zdelpi, zdelpm + 1 +Warning: Unused variable ‘zdelpi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_utils.F90:74:50: + + real, dimension(levs) :: zdelpi, zdelpm + 1 +Warning: Unused variable ‘zdelpm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_utils.F90:64:62: + + subroutine mflow_tauz(levs, up, vp, tp, qp, dp, zpm, zpi, & + 1 +Warning: Unused dummy argument ‘zpi’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_ugwp_utils.F90:75:39: + + real :: zul, bvl + 1 +Warning: Unused variable ‘zul’ declared at (1) [-Wunused-variable] +[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o +[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_orowam2017.f:294:18: + + integer :: i, j, k + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_orowam2017.f:294:21: + + integer :: i, j, k + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_orowam2017.f:279:26: + + & delp, rho, bn2, uzi, rhoi, ktur, kalp, dzi, xn, yn) + 1 +Warning: Unused dummy argument ‘rho’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_orowam2017.f:34:46: + + real(kind=kind_phys) :: belps, aelps, nhills, selps + 1 +Warning: Unused variable ‘aelps’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_orowam2017.f:34:39: + + real(kind=kind_phys) :: belps, aelps, nhills, selps + 1 +Warning: Unused variable ‘belps’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_orowam2017.f:67:44: + + real :: uz, bv, bv2,kxsp, fcor2, cf2 + 1 +Warning: Unused variable ‘cf2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_orowam2017.f:2:12: + + & dtp,dxres, taub, u1, v1, t1, xn, yn, bn2, rho, prsi, prsL, + 1 +Warning: Unused dummy argument ‘dtp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_orowam2017.f:2:18: + + & dtp,dxres, taub, u1, v1, t1, xn, yn, bn2, rho, prsi, prsL, + 1 +Warning: Unused dummy argument ‘dxres’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_orowam2017.f:3:34: + + & del, sigma, hprime, gamma, theta, + 1 +Warning: Unused dummy argument ‘gamma’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_orowam2017.f:3:27: + + & del, sigma, hprime, gamma, theta, + 1 +Warning: Unused dummy argument ‘hprime’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_orowam2017.f:39:29: + + integer :: i, j, k, isp, iw + 1 +Warning: Unused variable ‘isp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_orowam2017.f:67:32: + + real :: uz, bv, bv2,kxsp, fcor2, cf2 + 1 +Warning: Unused variable ‘kxsp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_orowam2017.f:1:66: + + subroutine oro_wam_2017(im, levs,npt,ipt, kref,kdt,me,master, + 1 +Warning: Unused dummy argument ‘master’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_orowam2017.f:1:59: + + subroutine oro_wam_2017(im, levs,npt,ipt, kref,kdt,me,master, + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_orowam2017.f:34:54: + + real(kind=kind_phys) :: belps, aelps, nhills, selps + 1 +Warning: Unused variable ‘nhills’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_orowam2017.f:34:61: + + real(kind=kind_phys) :: belps, aelps, nhills, selps + 1 +Warning: Unused variable ‘selps’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_orowam2017.f:3:19: + + & del, sigma, hprime, gamma, theta, + 1 +Warning: Unused dummy argument ‘sigma’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_orowam2017.f:3:41: + + & del, sigma, hprime, gamma, theta, + 1 +Warning: Unused dummy argument ‘theta’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_orowam2017.f:4:22: + + & sinlat, xlatd, taup, taud, pkdis) + 1 +Warning: Unused dummy argument ‘xlatd’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/field_manager/field_manager.F90:2398:22: + + this_list = rest + 1 +Warning: CHARACTER expression will be truncated in assignment (48/512) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/field_manager/field_manager.F90:6149:42: + + integer :: depthp1 + 1 +Warning: Unused variable ‘depthp1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/field_manager/field_manager.F90:6150:40: + + integer :: first + 1 +Warning: Unused variable ‘first’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/field_manager/field_manager.F90:6152:39: + + integer :: last + 1 +Warning: Unused variable ‘last’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/field_manager/field_manager.F90:6106:48: + + recursive function find_method(list_p, recursive, num_meth, method, control) & + 1 +Warning: Unused dummy argument ‘recursive’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/field_manager/field_manager.F90:5700:55: + + recursive function query_method(list_p, recursive, name, method_name, method_control) & + 1 +Warning: Unused dummy argument ‘name’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/field_manager/field_manager.F90:5519:14: + + integer :: ier + 1 +Warning: Unused variable ‘ier’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/field_manager/field_manager.F90:5425:14: + + integer :: ier + 1 +Warning: Unused variable ‘ier’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/field_manager/field_manager.F90:4961:61: + + integer :: i, ier + 1 +Warning: Unused variable ‘ier’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/field_manager/field_manager.F90:4724:42: + + integer :: i, ier + 1 +Warning: Unused variable ‘ier’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/field_manager/field_manager.F90:4489:46: + + integer :: i, ier + 1 +Warning: Unused variable ‘ier’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/field_manager/field_manager.F90:4253:42: + + integer :: i, ier + 1 +Warning: Unused variable ‘ier’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/field_manager/field_manager.F90:3920:46: + + type (field_def), pointer, save :: temp_list_p + 1 +Warning: Unused variable ‘temp_list_p’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/field_manager/field_manager.F90:3719:44: + + integer :: n, ier + 1 +Warning: Unused variable ‘ier’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/field_manager/field_manager.F90:1785:35: + + integer :: ier + 1 +Warning: Unused variable ‘ier’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/field_manager/field_manager.F90:1606:71: + + character(len=fm_path_name_len), dimension(size(methods(:))) :: control + 1 +Warning: Unused variable ‘control’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/field_manager/field_manager.F90:1608:74: + + logical :: found_methods + 1 +Warning: Unused variable ‘found_methods’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/field_manager/field_manager.F90:1607:70: + + character(len=fm_path_name_len), dimension(size(methods(:))) :: method + 1 +Warning: Unused variable ‘method’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/field_manager/field_manager.F90:1447:12: + + integer :: i + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/field_manager/field_manager.F90:1102:42: + + character(len=fm_string_len) :: val_list + 1 +Warning: Unused variable ‘val_list’ declared at (1) [-Wunused-variable] +[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o +[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:517:1: + + real, dimension(levs) :: ax, ay,eps + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:518:1: + + real, dimension(levs+1) :: ked + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:519:1: + + real, parameter :: xtiny = 1.e-30 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:144:41: + + real, dimension(levs) :: a_mkz + 1 +Warning: Unused variable ‘a_mkz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:156:20: + + real :: Chnorm, Cx, Cs, Cxs, Cx2sat + 1 +Warning: Unused variable ‘chnorm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:156:28: + + real :: Chnorm, Cx, Cs, Cxs, Cx2sat + 1 +Warning: Unused variable ‘cs’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:175:17: + + real :: dzi, keff, keff_m, keff_t, keffs + 1 +Warning: Unused variable ‘dzi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:164:24: + + real :: epss, epsk + 1 +Warning: Unused variable ‘epsk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:164:18: + + real :: epss, epsk + 1 +Warning: Unused variable ‘epss’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:105:14: + + fcor, c2f2, zm, zi, rho, um, tm, bn2, bn, rhoi, & + 1 +Warning: Unused dummy argument ‘fcor’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:143:39: + + real :: Fd1, Fd2 + 1 +Warning: Unused variable ‘fd1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:143:44: + + real :: Fd1, Fd2 + 1 +Warning: Unused variable ‘fd2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:157:26: + + real :: Fdis, Fdisat + 1 +Warning: Unused variable ‘fdisat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:180:26: + + integer :: i, k, igw + 1 +Warning: Unused variable ‘igw’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:165:22: + + real :: kds, kdk + 1 +Warning: Unused variable ‘kdk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:175:23: + + real :: dzi, keff, keff_m, keff_t, keffs + 1 +Warning: Unused variable ‘keff’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:175:46: + + real :: dzi, keff, keff_m, keff_t, keffs + 1 +Warning: Unused variable ‘keffs’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:106:50: + + dzirho, dzpi, kvg, ktg, krad, kion, kmol, eps, ked, tau ) + 1 +Warning: Unused dummy argument ‘kmol’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:181:22: + + integer :: ksat1, ksat2 + 1 +Warning: Unused variable ‘ksat1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:181:29: + + integer :: ksat1, ksat2 + 1 +Warning: Unused variable ‘ksat2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:178:19: + + real :: Lzkm, Lzsat + 1 +Warning: Unused variable ‘lzkm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:178:26: + + real :: Lzkm, Lzsat + 1 +Warning: Unused variable ‘lzsat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:186:24: + + real :: rab1, rab2, rab3, rab4, cd_ulim2 + 1 +Warning: Unused variable ‘rab2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:186:30: + + real :: rab1, rab2, rab3, rab4, cd_ulim2 + 1 +Warning: Unused variable ‘rab3’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:186:36: + + real :: rab1, rab2, rab3, rab4, cd_ulim2 + 1 +Warning: Unused variable ‘rab4’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:105:33: + + fcor, c2f2, zm, zi, rho, um, tm, bn2, bn, rhoi, & + 1 +Warning: Unused dummy argument ‘rho’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:177:20: + + real :: sf2k2, cf2 + 1 +Warning: Unused variable ‘sf2k2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:162:33: + + real :: taus, tauk, tau_lin + 1 +Warning: Unused variable ‘tau_lin’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:105:41: + + fcor, c2f2, zm, zi, rho, um, tm, bn2, bn, rhoi, & + 1 +Warning: Unused dummy argument ‘tm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:167:17: + + real :: wfd, wfi ! + 1 +Warning: Unused variable ‘wfd’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:167:22: + + real :: wfd, wfi ! + 1 +Warning: Unused variable ‘wfi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:105:24: + + fcor, c2f2, zm, zi, rho, um, tm, bn2, bn, rhoi, & + 1 +Warning: Unused dummy argument ‘zm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:183:22: + + real :: zsat1, zsat2 + 1 +Warning: Unused variable ‘zsat1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:183:29: + + real :: zsat1, zsat2 + 1 +Warning: Unused variable ‘zsat2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:2:28: + + fcor, c2f2, dp, zmid, zint, pmid, pint, rho, ui, vi, ti, & + 1 +Warning: Unused dummy argument ‘dp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90:2:46: + + fcor, c2f2, dp, zmid, zint, pmid, pint, rho, ui, vi, ti, & + 1 +Warning: Unused dummy argument ‘pmid’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:39:30: + + real :: vtj, rhok, bnv2, rdz, vtkp, vtk, dzp + 1 +Warning: Unused variable ‘bnv2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:6:58: + + elvpd, elvp, hprime , sigma, theta, oc, oa4, clx4, gam, zpbl, & + 1 +Warning: Unused dummy argument ‘clx4’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:39:51: + + real :: vtj, rhok, bnv2, rdz, vtkp, vtk, dzp + 1 +Warning: Unused variable ‘dzp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:6:13: + + elvpd, elvp, hprime , sigma, theta, oc, oa4, clx4, gam, zpbl, & + 1 +Warning: Unused dummy argument ‘elvpd’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:6:52: + + elvpd, elvp, hprime , sigma, theta, oc, oa4, clx4, gam, zpbl, & + 1 +Warning: Unused dummy argument ‘oa4’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:6:46: + + elvpd, elvp, hprime , sigma, theta, oc, oa4, clx4, gam, zpbl, & + 1 +Warning: Unused dummy argument ‘oc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:39:35: + + real :: vtj, rhok, bnv2, rdz, vtkp, vtk, dzp + 1 +Warning: Unused variable ‘rdz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:39:24: + + real :: vtj, rhok, bnv2, rdz, vtkp, vtk, dzp + 1 +Warning: Unused variable ‘rhok’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:39:18: + + real :: vtj, rhok, bnv2, rdz, vtkp, vtk, dzp + 1 +Warning: Unused variable ‘vtj’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:39:46: + + real :: vtj, rhok, bnv2, rdz, vtkp, vtk, dzp + 1 +Warning: Unused variable ‘vtk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:39:41: + + real :: vtj, rhok, bnv2, rdz, vtkp, vtk, dzp + 1 +Warning: Unused variable ‘vtkp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:326:60: + + real :: fr, frlin, frlin2, frlin3, frlocal, dfr + 1 +Warning: Unused variable ‘dfr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:348:54: + + real :: c2f2, umag2, dzwidth, udir + 1 +Warning: Unused variable ‘dzwidth’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:327:47: + + real :: betamax, betaf, frlwb, frmtb + 1 +Warning: Unused variable ‘frmtb’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:270:53: + + hprime , sigma, theta, oc, oa4, clx4, gamm, & + 1 +Warning: Unused dummy argument ‘gamm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:349:53: + + real :: hogwi, hdswi, hogwz, hdswz ! height*height wave-amp + 1 +Warning: Unused variable ‘hogwz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:330:20: + + integer :: i, j, k, nwd, ind4, idir + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:330:23: + + integer :: i, j, k, nwd, ind4, idir + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:333:56: + + real :: mkz, mkz2, zbr_mkz, mkzi + 1 +Warning: Unused variable ‘mkzi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:270:31: + + hprime , sigma, theta, oc, oa4, clx4, gamm, & + 1 +Warning: Unused dummy argument ‘theta’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:350:46: + + real :: uogwi, udswi, uogwz, udswz ! wind2 wave-rms + 1 +Warning: Unused variable ‘udswi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:350:39: + + real :: uogwi, udswi, uogwz, udswz ! wind2 wave-rms + 1 +Warning: Unused variable ‘uogwi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:350:53: + + real :: uogwi, udswi, uogwz, udswz ! wind2 wave-rms + 1 +Warning: Unused variable ‘uogwz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:333:50: + + real :: mkz, mkz2, zbr_mkz, mkzi + 1 +Warning: Unused variable ‘zbr_mkz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:801:50: + + real :: mkzm, mkz, dkz, mkz2, ch, kzw3 + 1 +Warning: Unused variable ‘dkz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:805:46: + + real :: fsat, hsat, hsat2, kds , c2f2 + 1 +Warning: Unused variable ‘hsat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:799:37: + + integer :: i, j, k, kcrit, kref + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:799:40: + + integer :: i, j, k, kcrit, kref + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:799:56: + + integer :: i, j, k, kcrit, kref + 1 +Warning: Unused variable ‘kref’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:801:45: + + real :: mkzm, mkz, dkz, mkz2, ch, kzw3 + 1 +Warning: Unused variable ‘mkz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:768:74: + + subroutine ugwp_oro_lsatdis( krefj, levs, tauogw, tautot, tau_src, & + 1 +Warning: Unused dummy argument ‘tau_src’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:768:64: + + subroutine ugwp_oro_lsatdis( krefj, levs, tauogw, tautot, tau_src, & + 1 +Warning: Unused dummy argument ‘tautot’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:794:57: + + real :: uref, udir, uf2, ufd, uf2p + 1 +Warning: Unused variable ‘ufd’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:770:23: + + xn, yn, umag, drtau, kdis) + 1 +Warning: Unused dummy argument ‘umag’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:929:50: + + subroutine ugwp_tofd(im, levs, sigflt, elvmax, zpbl, u, v, zmid, & + 1 +Warning: Unused dummy argument ‘elvmax’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:977:48: + + subroutine ugwp_tofd1d(levs, sigflt, elvmax, zsurf, zpbl, u, v, & + 1 +Warning: Unused dummy argument ‘elvmax’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:991:17: + + integer :: i, k + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_orodis.F90:221:0: + + pe = pe + bn2(k) * (elvp - zpm(k)) *(zpi(k+1) - zpi(k)) + +Warning: ‘pe’ may be used uninitialized in this function [-Wmaybe-uninitialized] +[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o +[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/mosaic.F90:187:15: + + i1(n) = tile1_cell(1,n) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/mosaic.F90:188:15: + + j1(n) = tile1_cell(2,n) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/mosaic.F90:189:15: + + i2(n) = tile2_cell(1,n) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/mosaic.F90:190:15: + + j2(n) = tile2_cell(2,n) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/mosaic.F90:579:41: + + real, dimension(size(lon2(:))) :: x2, y2, z2 + 1 +Warning: Unused variable ‘x2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/mosaic.F90:579:45: + + real, dimension(size(lon2(:))) :: x2, y2, z2 + 1 +Warning: Unused variable ‘y2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/mosaic.F90:579:49: + + real, dimension(size(lon2(:))) :: x2, y2, z2 + 1 +Warning: Unused variable ‘z2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/mosaic.F90:242:51: + + character(len=len_trim(mosaic_file)+1) :: mfile + 1 +Warning: Unused variable ‘mfile’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/mosaic.F90:244:67: + + integer :: read_mosaic_ncontacts + 1 +Warning: Unused variable ‘read_mosaic_ncontacts’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/mosaic.F90:243:52: + + integer :: strlen + 1 +Warning: Unused variable ‘strlen’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/mosaic.F90:88:0: + + subroutine mosaic_init() + +Warning: ‘mosaic_init’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90:185:1: + + tau(1:levs+1) = tau_bulk ! constant flux for all layers k2->1 + 1 +Warning: Unused dummy argument ‘grid_id’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/exchange/xgrid.F90:4070:44: + + function conservation_check_side1(d, grid_id, xmap,remap_method) ! this one for 1->2->1 + 1 +Warning: Unused dummy argument ‘grid_id’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/exchange/xgrid.F90:3968:66: + + integer :: g, i, j, k, p, l, n, l2, m, l3 + 1 +Warning: Unused variable ‘m’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/exchange/xgrid.F90:3846:75: + + real :: unpack_buffer(xmap%get1%recvsize*3) + 1 +Warning: Unused variable ‘unpack_buffer’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/exchange/xgrid.F90:3604:50: + + integer :: i, is, ie, im, j, js, je, jm, ii, jj + 1 +Warning: Unused variable ‘im’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/exchange/xgrid.F90:3605:47: + + integer :: p, l, ioff, joff, isd, jsd + 1 +Warning: Unused variable ‘ioff’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/exchange/xgrid.F90:3604:65: + + integer :: i, is, ie, im, j, js, je, jm, ii, jj + 1 +Warning: Unused variable ‘jm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/exchange/xgrid.F90:3605:53: + + integer :: p, l, ioff, joff, isd, jsd + 1 +Warning: Unused variable ‘joff’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/exchange/xgrid.F90:2551:43: + + integer :: root_pe, recvsize, sendsize + 1 +Warning: Unused variable ‘recvsize’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/exchange/xgrid.F90:2551:33: + + integer :: root_pe, recvsize, sendsize + 1 +Warning: Unused variable ‘root_pe’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/exchange/xgrid.F90:2551:53: + + integer :: root_pe, recvsize, sendsize + 1 +Warning: Unused variable ‘sendsize’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/exchange/xgrid.F90:2137:57: + + integer, dimension(0:xmap%npes-1) :: send_ind, recv_ind, pl + 1 +Warning: Unused variable ‘recv_ind’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/exchange/xgrid.F90:1521:43: + + integer :: g, p, send_size, recv_size, i, siz(4) + 1 +Warning: Unused variable ‘recv_size’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/exchange/xgrid.F90:1521:32: + + integer :: g, p, send_size, recv_size, i, siz(4) + 1 +Warning: Unused variable ‘send_size’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/exchange/xgrid.F90:644:80: + + integer :: pos, nsend, nrecv, l1, l2, n, mypos, m + 1 +Warning: Unused variable ‘m’ declared at (1) [-Wunused-variable] +[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fft/fft.F90:342:14: + + scale = 1./real(leng) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fft/fft.F90:733:19: + + integer :: ifail + 1 +Warning: Unused variable ‘ifail’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fft/fft.F90:731:15: + + integer :: j, k, num, len_fourier + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fft/fft.F90:731:18: + + integer :: j, k, num, len_fourier + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fft/fft.F90:596:19: + + integer :: ifail + 1 +Warning: Unused variable ‘ifail’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fft/fft.F90:594:15: + + integer :: j, k, num, len_grid + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fft/fft.F90:594:18: + + integer :: j, k, num, len_grid + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fft/fft.F90:453:15: + + integer :: j, k, num, len_fourier + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fft/fft.F90:453:18: + + integer :: j, k, num, len_fourier + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fft/fft.F90:317:15: + + integer :: j, k, num, len_grid + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fft/fft.F90:317:18: + + integer :: j, k, num, len_grid + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fft/fft99.F90:1114:5: + + 130 ia=1 + 1 +Warning: Label 130 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fft/fft99.F90:1036:5: + + 90 ia=1 + 1 +Warning: Label 90 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fft/fft99.F90:971:5: + + 50 ia=1 + 1 +Warning: Label 50 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fft/fft99.F90:923:5: + + 10 ia=1 + 1 +Warning: Label 10 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fft/fft99.F90:675:5: + + 50 continue + 1 +Warning: Label 50 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/fft/fft99.F90:346:5: + + 50 continue + 1 +Warning: Label 50 at (1) defined but not used [-Wunused-label] +[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:1377:11: + + e(1) = e1 + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:1378:11: + + e(2) = e2 + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:1379:11: + + e(3) = e3 + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:1340:13: + + xs(i) = lon + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:1341:13: + + ys(i) = lat + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:1344:17: + + q(k,i) = p(k) + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:1152:30: + + units=chomp(units) + 1 +Warning: CHARACTER expression will be truncated in assignment (32/64) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:3586:63: + + subroutine read_data_no_time_axis(clim_type,src_field, hdata, i) + 1 +Warning: Unused dummy argument ‘i’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:3410:27: + + integer :: taum, taup, ilon + 1 +Warning: Unused variable ‘ilon’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:3416:12: + + integer :: j, k, i, n + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:3416:15: + + integer :: j, k, i, n + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:3416:21: + + integer :: j, k, i, n + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:3412:55: + + real :: p_fact(size(interp_data,1),size(interp_data,2)) + 1 +Warning: Unused variable ‘p_fact’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:3414:17: + + logical :: result + 1 +Warning: Unused variable ‘result’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:3410:15: + + integer :: taum, taup, ilon + 1 +Warning: Unused variable ‘taum’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:3410:21: + + integer :: taum, taup, ilon + 1 +Warning: Unused variable ‘taup’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:3409:15: + + real :: tweight, tweight1, tweight2, tweight3 + 1 +Warning: Unused variable ‘tweight’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:3409:25: + + real :: tweight, tweight1, tweight2, tweight3 + 1 +Warning: Unused variable ‘tweight1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:3409:35: + + real :: tweight, tweight1, tweight2, tweight3 + 1 +Warning: Unused variable ‘tweight2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:3409:45: + + real :: tweight, tweight1, tweight2, tweight3 + 1 +Warning: Unused variable ‘tweight3’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:3286:21: + + integer :: i, j, k, n !< No description + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:3284:17: + + logical :: result !< No description + 1 +Warning: Unused variable ‘result’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:3279:15: + + integer :: taum, taup, ilon !< No description + 1 +Warning: Unused variable ‘taum’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:3279:21: + + integer :: taum, taup, ilon !< No description + 1 +Warning: Unused variable ‘taup’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:3275:15: + + real :: tweight !< No description + 1 +Warning: Unused variable ‘tweight’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:3276:16: + + real :: tweight1 !< The time weight between the climatology years + 1 +Warning: Unused variable ‘tweight1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:3277:16: + + real :: tweight2 !< No description + 1 +Warning: Unused variable ‘tweight2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:3278:16: + + real :: tweight3 !< The time weight between the months + 1 +Warning: Unused variable ‘tweight3’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/interpolator/interpolator.F90:3114:17: + + logical :: result + 1 +Warning: Unused variable ‘result’ declared at (1) [-Wunused-variable] +[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/GFS_layer/GFS_restart.F90:37:49: + + Coupling, Grid, Tbd, Cldprop, Radtend, IntDiag, Init_parm, ExtDiag) + 1 +Warning: Unused dummy argument ‘grid’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/GFS_layer/GFS_restart.F90:37:81: + + Coupling, Grid, Tbd, Cldprop, Radtend, IntDiag, Init_parm, ExtDiag) + 1 +Warning: Unused dummy argument ‘intdiag’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/GFS_layer/GFS_restart.F90:37:72: + + Coupling, Grid, Tbd, Cldprop, Radtend, IntDiag, Init_parm, ExtDiag) + 1 +Warning: Unused dummy argument ‘radtend’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/GFS_layer/GFS_restart.F90:36:58: + + subroutine GFS_restart_populate (Restart, Model, Statein, Stateout, Sfcprop, & + 1 +Warning: Unused dummy argument ‘statein’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/GFS_layer/GFS_restart.F90:36:68: + + subroutine GFS_restart_populate (Restart, Model, Statein, Stateout, Sfcprop, & + 1 +Warning: Unused dummy argument ‘stateout’ at (1) [-Wunused-dummy-argument] +[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/grid.F90:1007:37: + + mosaic_file = grid_dir//mosaic_file + 1 +Warning: CHARACTER expression will be truncated in assignment (1024/1030) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/grid.F90:811:36: + + character(len=MAX_NAME) :: varname + 1 +Warning: Unused variable ‘varname’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/grid.F90:274:37: + + character(len=MAX_NAME) :: varname1, varname2 + 1 +Warning: Unused variable ‘varname1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/grid.F90:274:47: + + character(len=MAX_NAME) :: varname1, varname2 + 1 +Warning: Unused variable ‘varname2’ declared at (1) [-Wunused-variable] +[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o +[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o +[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp_utilities.F90:68:18: + + integer :: igmax, jgmax, kgmax, igmin, jgmin, kgmin + 1 +Warning: Unused variable ‘igmax’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp_utilities.F90:68:39: + + integer :: igmax, jgmax, kgmax, igmin, jgmin, kgmin + 1 +Warning: Unused variable ‘igmin’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp_utilities.F90:68:25: + + integer :: igmax, jgmax, kgmax, igmin, jgmin, kgmin + 1 +Warning: Unused variable ‘jgmax’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp_utilities.F90:68:46: + + integer :: igmax, jgmax, kgmax, igmin, jgmin, kgmin + 1 +Warning: Unused variable ‘jgmin’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp_utilities.F90:68:32: + + integer :: igmax, jgmax, kgmax, igmin, jgmin, kgmin + 1 +Warning: Unused variable ‘kgmax’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp_utilities.F90:68:53: + + integer :: igmax, jgmax, kgmax, igmin, jgmin, kgmin + 1 +Warning: Unused variable ‘kgmin’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mpp/mpp_utilities.F90:51:78: + + subroutine mpp_array_global_min_max(in_array, tmask,isd,jsd,isc,iec,jsc,jec,nk, g_min, g_max, & + 1 +Warning: Unused dummy argument ‘nk’ at (1) [-Wunused-dummy-argument] +[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o +[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o +[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o +[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/physics/set_soilveg.f:36:9: + + & 0.63, 0.0, 0.0, 0.0, 0.0, 0.0, + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/physics/set_soilveg.f:37:9: + + & 0.0 , 0.0, 0.0, 0.0, 0.0, 0.0, + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/physics/set_soilveg.f:38:9: + + & 0.0 , 0.0, 0.0, 0.0, 0.0, 0.0, + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/physics/set_soilveg.f:39:9: + + & 0.0 , 0.0, 0.0, 0.0, 0.0, 0.0/) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/physics/set_soilveg.f:42:9: + + & 150.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/physics/set_soilveg.f:43:9: + + & 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/physics/set_soilveg.f:44:9: + + & 0.0, 0.0, 0.0, 0.0, 0.0, 0.0/) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/physics/set_soilveg.f:47:9: + + & 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/physics/set_soilveg.f:48:9: + + & 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/physics/set_soilveg.f:49:9: + + & 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/physics/set_soilveg.f:50:9: + + & 0.0, 0.0, 0.0, 0.0, 0.0, 0.0/) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/physics/set_soilveg.f:52:9: + + & 36.35, 42.00, 42.00, 42.00, 42.00, 36.35, + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/physics/set_soilveg.f:53:9: + + & 42.00, 0.00, 0.00, 0.00, 0.00, 0.00, + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/physics/set_soilveg.f:54:9: + + & 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/physics/set_soilveg.f:55:9: + + & 0.00, 0.00, 0.00, 0.00, 0.00, 0.00/) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/physics/set_soilveg.f:63:9: + + & 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/physics/set_soilveg.f:64:9: + + & 0.000, 0.000, 0.000, 0.000, 0.000, 0.000/) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/physics/set_soilveg.f:1:31: + + subroutine set_soilveg(me,isot,ivet,nlunit) + 1 +Warning: Unused dummy argument ‘me’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/gfsphysics/physics/set_soilveg.f:1:48: + + subroutine set_soilveg(me,isot,ivet,nlunit) + 1 +Warning: Unused dummy argument ‘nlunit’ at (1) [-Wunused-dummy-argument] +[ 67%] Linking Fortran static library libgfsphysics.a +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:443:13: + + probe=rprobe + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1353:9: + + m=Prof(n)%probe + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:152:31: + + logical :: add_tidal_aliasing=.false. + 1 +Warning: Unused PRIVATE module variable ‘add_tidal_aliasing’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:109:47: + + integer :: max_profiles = 250000, max_sfc_obs = 1 + 1 +Warning: Unused PRIVATE module variable ‘max_sfc_obs’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:160:60: + + integer, allocatable, dimension(:) :: nprof_in_comp_domain + 1 +Warning: Unused PRIVATE module variable ‘nprof_in_comp_domain’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:120:77: + + type(ocean_surface_type), target, save, private, allocatable :: sfc_obs(:) + 1 +Warning: Unused PRIVATE module variable ‘sfc_obs’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1590:17: + + real :: dz, a, dx1, dx2, dy1, dy2 + 1 +Warning: Unused variable ‘a’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1592:79: + + real :: temp_missing=missing_value,salt_missing=missing_value,depth_missing=missing_value + 1 +Warning: Unused variable ‘depth_missing’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1584:23: + + integer :: nstation, unit, n, noobs, i, k + 1 +Warning: Unused variable ‘nstation’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1592:51: + + real :: temp_missing=missing_value,salt_missing=missing_value,depth_missing=missing_value + 1 +Warning: Unused variable ‘salt_missing’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1592:24: + + real :: temp_missing=missing_value,salt_missing=missing_value,depth_missing=missing_value + 1 +Warning: Unused variable ‘temp_missing’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1584:29: + + integer :: nstation, unit, n, noobs, i, k + 1 +Warning: Unused variable ‘unit’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1548:30: + + real :: dtdz, err, a1, a2 + 1 +Warning: Unused variable ‘a2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1437:16: + + integer :: i,j + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1448:48: + + integer :: nfiles, filetype(max_files), ioun, io_status, ierr,& + 1 +Warning: Unused variable ‘ioun’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1437:18: + + integer :: i,j + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1398:33: + + subroutine mult_obs_I_mse_sfc(a, Obs) + 1 +Warning: Unused dummy argument ‘a’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1398:38: + + subroutine mult_obs_I_mse_sfc(a, Obs) + 1 +Warning: Unused dummy argument ‘obs’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1369:38: + + subroutine adjust_obs_error_sfc(Diff) + 1 +Warning: Unused dummy argument ‘diff’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1349:21: + + real :: tfac, Ims + 1 +Warning: Unused variable ‘ims’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1334:32: + + subroutine copy_obs_sfc(Obs_in, Obs_out) + 1 +Warning: Unused dummy argument ‘obs_in’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1334:41: + + subroutine copy_obs_sfc(Obs_in, Obs_out) + 1 +Warning: Unused dummy argument ‘obs_out’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1260:42: + + subroutine diff_obs_sfc(prof1,prof2,Diff) + 1 +Warning: Unused dummy argument ‘diff’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1260:31: + + subroutine diff_obs_sfc(prof1,prof2,Diff) + 1 +Warning: Unused dummy argument ‘prof1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1260:37: + + subroutine diff_obs_sfc(prof1,prof2,Diff) + 1 +Warning: Unused dummy argument ‘prof2’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1212:42: + + subroutine assign_forward_model_sfc(Obs1,Obs2) + 1 +Warning: Unused dummy argument ‘obs1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1212:47: + + subroutine assign_forward_model_sfc(Obs1,Obs2) + 1 +Warning: Unused dummy argument ‘obs2’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1185:39: + + subroutine backward_obs_sfc(Obs,model) + 1 +Warning: Unused dummy argument ‘model’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1185:33: + + subroutine backward_obs_sfc(Obs,model) + 1 +Warning: Unused dummy argument ‘obs’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1096:45: + + subroutine forward_obs_sfc(Sfc, Guess, Diff) + 1 +Warning: Unused dummy argument ‘diff’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1096:39: + + subroutine forward_obs_sfc(Sfc, Guess, Diff) + 1 +Warning: Unused dummy argument ‘guess’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1096:32: + + subroutine forward_obs_sfc(Sfc, Guess, Diff) + 1 +Warning: Unused dummy argument ‘sfc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:930:19: + + integer :: ioun, ierr, io_status + 1 +Warning: Unused variable ‘ioun’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:847:29: + + character(len=1) :: cchar + 1 +Warning: Unused variable ‘cchar’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:845:51: + + integer :: i,k,yr,mon,day,hr,minu,sec,a,mon_obs,yr_obs, outunit + 1 +Warning: Unused variable ‘mon_obs’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:834:42: + + subroutine get_obs(model_time, Prof, Sfc, nprof, nsfc) + 1 +Warning: Unused dummy argument ‘sfc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:845:58: + + integer :: i,k,yr,mon,day,hr,minu,sec,a,mon_obs,yr_obs, outunit + 1 +Warning: Unused variable ‘yr_obs’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:267:49: + + k, kk, ll, i, i0, j0, k0, nlevs, a, nn, ii, nlinks + 1 +Warning: Unused variable ‘a’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:269:45: + + character(len=128) :: time_units, attname, catt + 1 +Warning: Unused variable ‘attname’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:265:40: + + integer :: nlev, probe, yr, mon, day, hr, minu, sec, kl, outunit + 1 +Warning: Unused variable ‘day’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:264:26: + + error(max_levels), rprobe, profile_error, rlink + 1 +Warning: Unused variable ‘error’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:265:44: + + integer :: nlev, probe, yr, mon, day, hr, minu, sec, kl, outunit + 1 +Warning: Unused variable ‘hr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:265:59: + + integer :: nlev, probe, yr, mon, day, hr, minu, sec, kl, outunit + 1 +Warning: Unused variable ‘kl’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:267:24: + + k, kk, ll, i, i0, j0, k0, nlevs, a, nn, ii, nlinks + 1 +Warning: Unused variable ‘ll’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:265:50: + + integer :: nlev, probe, yr, mon, day, hr, minu, sec, kl, outunit + 1 +Warning: Unused variable ‘minu’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:265:35: + + integer :: nlev, probe, yr, mon, day, hr, minu, sec, kl, outunit + 1 +Warning: Unused variable ‘mon’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:265:19: + + integer :: nlev, probe, yr, mon, day, hr, minu, sec, kl, outunit + 1 +Warning: Unused variable ‘nlev’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:265:55: + + integer :: nlev, probe, yr, mon, day, hr, minu, sec, kl, outunit + 1 +Warning: Unused variable ‘sec’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:265:30: + + integer :: nlev, probe, yr, mon, day, hr, minu, sec, kl, outunit + 1 +Warning: Unused variable ‘yr’ declared at (1) [-Wunused-variable] +[ 67%] Built target gfsphysics +[ 68%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core_ecda.F90:64:20: + + real :: max_misfit = 5.0 !< used to inflate observation errors where the difference from the first guess is large + 1 +Warning: Unused PRIVATE module variable ‘max_misfit’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core_ecda.F90:93:59: + + real, allocatable :: sst_lon(:), sst_lat(:), obs_sst(:,:) + 1 +Warning: Unused PRIVATE module variable ‘obs_sst’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core_ecda.F90:93:45: + + real, allocatable :: sst_lon(:), sst_lat(:), obs_sst(:,:) + 1 +Warning: Unused PRIVATE module variable ‘sst_lat’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core_ecda.F90:93:33: + + real, allocatable :: sst_lon(:), sst_lat(:), obs_sst(:,:) + 1 +Warning: Unused PRIVATE module variable ‘sst_lon’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core_ecda.F90:3421:19: + + integer :: i, k, i_m, i0, j0 + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core_ecda.F90:3275:46: + + subroutine open_profile_dataset_suv(filename, obs_variable, localize) + 1 +Warning: Unused dummy argument ‘filename’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core_ecda.F90:3141:46: + + subroutine open_profile_dataset_eta(filename, obs_variable, localize) + 1 +Warning: Unused dummy argument ‘filename’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core_ecda.F90:2964:33: + + character(len=32) :: axisname + 1 +Warning: Unused variable ‘axisname’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core_ecda.F90:2852:48: + + integer :: iy0, in0, id0, ih0, im0, is0, i_m + 1 +Warning: Unused variable ‘i_m’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core_ecda.F90:2133:33: + + integer :: stdout_unit, istat + 1 +Warning: Unused variable ‘istat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core_ecda.F90:2144:65: + + type(axistype), pointer :: lon_axis, lat_axis, z_axis, t_axis + 1 +Warning: Unused variable ‘t_axis’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core_ecda.F90:1806:25: + + integer :: ioun, ierr, io_status + 1 +Warning: Unused variable ‘ierr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core_ecda.F90:1806:19: + + integer :: ioun, ierr, io_status + 1 +Warning: Unused variable ‘ioun’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core.F90:1543:0: + + subroutine add_tidal_error(Prof) + +Warning: ‘add_tidal_error’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core_ecda.F90:152:36: + + integer :: ioun, io_status, ierr + 1 +Warning: Unused variable ‘ierr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/oda_tools/oda_core_ecda.F90:152:19: + + integer :: ioun, io_status, ierr + 1 +Warning: Unused variable ‘ioun’ declared at (1) [-Wunused-variable] +Scanning dependencies of target ipd +[ 68%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o +[ 68%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ipd/IPD_driver.F90:99:54: + + subroutine IPD_step (IPD_Control, IPD_Data, IPD_Diag, IPD_Restart, IPD_func0d, IPD_func1d) + 1 +Warning: Unused dummy argument ‘ipd_diag’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ipd/IPD_driver.F90:99:67: + + subroutine IPD_step (IPD_Control, IPD_Data, IPD_Diag, IPD_Restart, IPD_func0d, IPD_func1d) + 1 +Warning: Unused dummy argument ‘ipd_restart’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/ipd/IPD_driver.F90:40:73: + + subroutine IPD_initialize (IPD_Control, IPD_Data, IPD_Diag, IPD_Restart, & + 1 +Warning: Unused dummy argument ‘ipd_restart’ at (1) [-Wunused-dummy-argument] +[ 69%] Linking Fortran static library libipd.a +[ 69%] Built target ipd +[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o +Scanning dependencies of target ccppdriver +[ 69%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o +[ 70%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/station_data/station_data.F90:639:89: + + integer :: out_num, file_num,num_fields, method_selected, l1 + 1 +Warning: Unused variable ‘method_selected’ declared at (1) [-Wunused-variable] +[ 71%] Linking Fortran static library libccppdriver.a +[ 71%] Built target ccppdriver +[ 71%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o +[ 71%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o +[ 72%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/tracer_manager/tracer_manager.F90:912:3: + + 901 FORMAT(E12.6,1x,E12.6) + 1 +Warning: Label 901 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/tracer_manager/tracer_manager.F90:911:3: + + 900 FORMAT(A,2(1x,E12.6)) + 1 +Warning: Label 900 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/tracer_manager/tracer_manager.F90:301:81: + + tracers(num_tracer_fields)%tracer_units = methods(j)%method_name + 1 +Warning: CHARACTER expression will be truncated in assignment (32/128) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/tracer_manager/tracer_manager.F90:1526:66: + + subroutine set_tracer_method(model, name, method_type, method_name, method_control) + 1 +Warning: Unused dummy argument ‘method_name’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/tracer_manager/tracer_manager.F90:1384:0: + + if(error_handler('query_method', err_msg_local, err_msg)) return + +Warning: control reaches end of non-void function [-Wreturn-type] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/tracer_manager/tracer_manager.F90:1526:0: + + subroutine set_tracer_method(model, name, method_type, method_name, method_control) + +Warning: ‘set_tracer_method’ defined but not used [-Wunused-function] +[ 73%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o +[ 73%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o +[ 73%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o +[ 73%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c: In function ‘get_grid_great_circle_area’: +[ 74%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c:136:30: warning: unused variable ‘z_in’ [-Wunused-variable] + double x_in[20], y_in[20], z_in[20]; + ^~~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c:136:20: warning: unused variable ‘y_in’ [-Wunused-variable] + double x_in[20], y_in[20], z_in[20]; + ^~~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c:136:10: warning: unused variable ‘x_in’ [-Wunused-variable] + double x_in[20], y_in[20], z_in[20]; + ^~~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c: In function ‘get_grid_great_circle_area_ug’: +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c:185:30: warning: unused variable ‘z_in’ [-Wunused-variable] + double x_in[20], y_in[20], z_in[20]; + ^~~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c:185:20: warning: unused variable ‘y_in’ [-Wunused-variable] + double x_in[20], y_in[20], z_in[20]; + ^~~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c:185:10: warning: unused variable ‘x_in’ [-Wunused-variable] + double x_in[20], y_in[20], z_in[20]; + ^~~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c: In function ‘create_xgrid_1dx2d_order2’: +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c:497:31: warning: unused variable ‘n’ [-Wunused-variable] + int i1, j1, i2, j2, nxgrid, n; + ^ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c: In function ‘create_xgrid_2dx1d_order2’: +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c:700:31: warning: unused variable ‘n’ [-Wunused-variable] + int i1, j1, i2, j2, nxgrid, n; + ^ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c: In function ‘create_xgrid_2dx2d_order1’: +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c:950:17: warning: unused variable ‘n_in’ [-Wunused-variable] + int n_in, n_out, i2, j2, n2_in; + ^~~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c: In function ‘create_xgrid_2dx2d_order2’: +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c:1226:17: warning: unused variable ‘n_in’ [-Wunused-variable] + int n_in, n_out, i2, j2, n2_in; + ^~~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c:1079:19: warning: unused variable ‘xctrlat’ [-Wunused-variable] + double xctrlon, xctrlat; + ^~~~~~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c:1079:10: warning: unused variable ‘xctrlon’ [-Wunused-variable] + double xctrlon, xctrlat; + ^~~~~~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c: In function ‘create_xgrid_great_circle’: +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c:1582:17: warning: unused variable ‘n_in’ [-Wunused-variable] + int n_in, n_out; + ^~~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c:1541:19: warning: unused variable ‘xctrlat’ [-Wunused-variable] + double xctrlon, xctrlat; + ^~~~~~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c:1541:10: warning: unused variable ‘xctrlon’ [-Wunused-variable] + double xctrlon, xctrlat; + ^~~~~~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c: In function ‘create_xgrid_great_circle_ug’: +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c:1696:17: warning: unused variable ‘n_in’ [-Wunused-variable] + int n_in, n_out; + ^~~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c:1657:19: warning: unused variable ‘xctrlat’ [-Wunused-variable] + double xctrlon, xctrlat; + ^~~~~~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c:1657:10: warning: unused variable ‘xctrlon’ [-Wunused-variable] + double xctrlon, xctrlat; + ^~~~~~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c: In function ‘clip_2dx2d_great_circle’: +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c:1901:25: warning: unused variable ‘is_in_clip’ [-Wunused-variable] + int is_in_subj, is_in_clip; + ^~~~~~~~~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c:1901:13: warning: unused variable ‘is_in_subj’ [-Wunused-variable] + int is_in_subj, is_in_clip; + ^~~~~~~~~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c:1900:21: warning: unused variable ‘n_cur’ [-Wunused-variable] + int n_prev, n_cur; + ^~~~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c:1900:13: warning: unused variable ‘n_prev’ [-Wunused-variable] + int n_prev, n_cur; + ^~~~~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c:1780:14: warning: unused variable ‘first_call’ [-Wunused-variable] + static int first_call=1; + ^~~~~~~~~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c:1759:16: warning: unused variable ‘clipList’ [-Wunused-variable] + struct Node *clipList=NULL; + ^~~~~~~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c:1758:16: warning: unused variable ‘subjList’ [-Wunused-variable] + struct Node *subjList=NULL; + ^~~~~~~~ +At top level: +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/create_xgrid.c:1780:14: warning: ‘first_call’ defined but not used [-Wunused-variable] + static int first_call=1; + ^~~~~~~~~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/interp.c: In function ‘cubic_spline_sp’: +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/interp.c:50:21: warning: variable ‘khi’ set but not used [-Wunused-but-set-variable] + int i, k, n, klo, khi, kmax; + ^~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/interp.c: In function ‘linear_vertical_interp’: +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/interp.c:357:15: warning: unused variable ‘i’ [-Wunused-variable] + int n1, n2, i, n, k, l; + ^ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/interp.c:357:11: warning: unused variable ‘n2’ [-Wunused-variable] + int n1, n2, i, n, k, l; + ^~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/interp.c:357:7: warning: unused variable ‘n1’ [-Wunused-variable] + int n1, n2, i, n, k, l; + ^~ +[ 74%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o +[ 74%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/mosaic_util.c: In function ‘setInbound’: +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/mosaic_util.c:1261:23: warning: unused variable ‘next_is_inside’ [-Wunused-variable] + int prev_is_inside, next_is_inside; + ^~~~~~~~~~~~~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/mosaic_util.c:1261:7: warning: unused variable ‘prev_is_inside’ [-Wunused-variable] + int prev_is_inside, next_is_inside; + ^~~~~~~~~~~~~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/read_mosaic.c: In function ‘read_mosaic_grid_data’: +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/read_mosaic.c:837:29: warning: ‘%s’ directive writing up to 254 bytes into a region of size between 0 and 254 [-Wformat-overflow=] + sprintf(tilefile, "%s/%s", dir, gridfile); + ^~ ~~~~~~~~ +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FMS/mosaic/read_mosaic.c:837:7: note: ‘sprintf’ output between 2 and 510 bytes into a destination of size 255 + sprintf(tilefile, "%s/%s", dir, gridfile); + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +[ 74%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o +[ 75%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o +[ 75%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o +[ 75%] Linking Fortran static library FMS/libfms.a +[ 75%] 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 +[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o +Scanning dependencies of target fv3core +[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_arrays.F90:50:30: + + real, parameter:: real_snan=x'FFF7FFFFFFFFFFFF' + 1 +Warning: BOZ literal at (1) is bitwise transferred non-integer symbol ‘real_snan’ [-Wsurprising] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_arrays.F90:2015:84: + + subroutine allocate_fv_nest_BC_type_3D(BC,is,ie,js,je,isd,ied,jsd,jed,npx,npy,npz,ng,ns,istag,jstag,dummy) + 1 +Warning: Unused dummy argument ‘ng’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_nemsio.F90:725:32: + + vcoord(k,1,1) = ak8(kz-k+1) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_nemsio.F90:728:30: + + vcoord(:,1,1) = ak8(:) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_nemsio.F90:738:32: + + vcoord(k,2,1) = bk8(kz-k+1) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_nemsio.F90:741:30: + + vcoord(:,2,1) = bk8(:) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_nemsio.F90:387:32: + + arrayr42d(m,n) = arrayr82d(m,n) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_nemsio.F90:474:35: + + arrayr42d(m,n) = arrayr83d(m,n,k) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_nemsio.F90:112:29: + + lon1d((j-1)*imo+i) = lon(i) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_nemsio.F90:113:29: + + lat1d((j-1)*imo+i) = lat(j) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_nemsio.F90:12:30: + + logical :: first_nemsio_call + 1 +Warning: Unused PRIVATE module variable ‘first_nemsio_call’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_nemsio.F90:15:24: + + logical :: hydrostatic + 1 +Warning: Unused PRIVATE module variable ‘hydrostatic’ declared at (1) [-Wunused-value] +mpif.h:561:54: + +Warning: Unused PRIVATE module variable ‘mpi_statuses_ignore’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_nemsio.F90:16:34: + + real(kind=ESMF_KIND_R4) :: varr4 + 1 +Warning: Unused PRIVATE module variable ‘varr4’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_nemsio.F90:548:47: + + character(80) attName, hydrostatics, fldname + 1 +Warning: Unused variable ‘fldname’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_nemsio.F90:548:38: + + character(80) attName, hydrostatics, fldname + 1 +Warning: Unused variable ‘hydrostatics’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_nemsio.F90:286:17: + + real fhour + 1 +Warning: Unused variable ‘fhour’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_nemsio.F90:284:16: + + integer i,ii,j,m,n,k, k1,k2,k3,jrec, nfseconds, nofsync, FFSYNC + 1 +Warning: Unused variable ‘ii’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_nemsio.F90:284:18: + + integer i,ii,j,m,n,k, k1,k2,k3,jrec, nfseconds, nofsync, FFSYNC + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_nemsio.F90:66:67: + + real(ESMF_KIND_R8), dimension(:,:), pointer :: lonPtr, latPtr + 1 +Warning: Unused variable ‘latptr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_nemsio.F90:66:59: + + real(ESMF_KIND_R8), dimension(:,:), pointer :: lonPtr, latPtr + 1 +Warning: Unused variable ‘lonptr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_nemsio.F90:58:27: + + integer i,j, nfld, nidx, nlen + 1 +Warning: Unused variable ‘nidx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_nemsio.F90:524:0: + + subroutine write_nemaio_final() + +Warning: ‘write_nemaio_final’ defined but not used [-Wunused-function] +[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o +[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_netcdf.F90:1:29: + + !#define ESMF_ERR_ABORT(rc) \ + +Warning: backslash and newline separated by space +[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_fill.F90:60:23: + + integer i, k, ic, k1 + 1 +Warning: Unused variable ‘k1’ declared at (1) [-Wunused-variable] +[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs_stub.F90.o +[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/sim_nc_mod.F90:352:17: + + integer:: i,j + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/sim_nc_mod.F90:352:19: + + integer:: i,j + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/sim_nc_mod.F90:281:30: + + real*4:: wk4(im,jm,km,4) + 1 +Warning: Unused variable ‘wk4’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/sim_nc_mod.F90:252:40: + + real(kind=4), dimension(1) :: time + 1 +Warning: Unused variable ‘time’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/sim_nc_mod.F90:159:40: + + real(kind=4), dimension(1) :: time + 1 +Warning: Unused variable ‘time’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/sim_nc_mod.F90:136:54: + + subroutine get_var2_real( ncid, var_name, im, jm, var2 ) + 1 +Warning: Unused dummy argument ‘jm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/sim_nc_mod.F90:275:0: + + subroutine get_var4_real( ncid, var4_name, im, jm, km, nt, var4 ) + +Warning: ‘get_var4_real’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/sim_nc_mod.F90:317:0: + + subroutine get_var4_double( ncid, var4_name, im, jm, km, nt, var4 ) + +Warning: ‘get_var4_double’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/sim_nc_mod.F90:344:0: + + subroutine get_real3( ncid, var4_name, im, jm, nt, var4 ) + +Warning: ‘get_real3’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/sim_nc_mod.F90:382:0: + + subroutine get_var_att_str(ncid, var_name, att_name, att) + +Warning: ‘get_var_att_str’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/sim_nc_mod.F90:428:0: + + subroutine calendar(year, month, day, hour) + +Warning: ‘calendar’ defined but not used [-Wunused-function] +[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_netcdf.F90:344:29: + + arrayr4_3d = quantized(arrayr4_3d_save, nbits, dataMin, dataMax) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90:161:28: + + subroutine diag_zero (Diag) + 1 +Warning: Unused dummy argument ‘diag’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90:148:30: + + subroutine diag_create (Diag, IM, Ntracers) + 1 +Warning: Unused dummy argument ‘diag’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90:148:34: + + subroutine diag_create (Diag, IM, Ntracers) + 1 +Warning: Unused dummy argument ‘im’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90:148:44: + + subroutine diag_create (Diag, IM, Ntracers) + 1 +Warning: Unused dummy argument ‘ntracers’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_netcdf.F90:514:26: + + integer :: i, attcount, n, dim_varid + 1 +Warning: Unused variable ‘attcount’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_netcdf.F90:516:41: + + character(len=ESMF_MAXSTR) :: attName + 1 +Warning: Unused variable ‘attname’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_netcdf.F90:514:16: + + integer :: i, attcount, n, dim_varid + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_netcdf.F90:522:61: + + character(len=ESMF_MAXSTR), allocatable :: valueListC(:) + 1 +Warning: Unused variable ‘valuelistc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_netcdf.F90:519:42: + + integer, allocatable :: valueListI(:) + 1 +Warning: Unused variable ‘valuelisti’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_netcdf.F90:393:34: + + real(ESMF_KIND_R4) :: varr4val + 1 +Warning: Unused variable ‘varr4val’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_netcdf.F90:395:34: + + real(ESMF_KIND_R8) :: varr8val + 1 +Warning: Unused variable ‘varr8val’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_netcdf.F90:36:24: + + integer :: i,j,m,n,k + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_netcdf.F90:69:43: + + integer :: im_varid, jm_varid, lm_varid, time_varid, lon_varid, lat_varid + 1 +Warning: Unused variable ‘lm_varid’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_netcdf.F90:36:20: + + integer :: i,j,m,n,k + 1 +Warning: Unused variable ‘m’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_netcdf.F90:25:64: + + subroutine write_netcdf(fieldbundle, wrtfb, filename, mpi_comm, mype, im, jm, rc) + 1 +Warning: Unused dummy argument ‘mpi_comm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_netcdf.F90:59:57: + + real(4) :: varr4val, scale_fact, compress_err, offset, dataMin, dataMax + 1 +Warning: Unused variable ‘offset’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_netcdf.F90:59:35: + + real(4) :: varr4val, scale_fact, compress_err, offset, dataMin, dataMax + 1 +Warning: Unused variable ‘scale_fact’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_netcdf.F90:63:32: + + character(128) :: time_units + 1 +Warning: Unused variable ‘time_units’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_netcdf.F90:69:55: + + integer :: im_varid, jm_varid, lm_varid, time_varid, lon_varid, lat_varid + 1 +Warning: Unused variable ‘time_varid’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_write_netcdf.F90:562:0: + + subroutine nccheck(status) + +Warning: ‘nccheck’ defined but not used [-Wunused-function] +[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o +/glade/u/apps/ch/opt/mpt/2.19/include/mpif.h:561:54: + + integer MPI_STATUSES_IGNORE(MPI_STATUS_SIZE,1) + 1 +Warning: Unused PRIVATE module variable ‘mpi_statuses_ignore’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_mp_mod.F90:126:76: + + type(nest_domain_type), allocatable, dimension(:) :: nest_domain + 1 +Warning: Unused PRIVATE module variable ‘nest_domain’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_mp_mod.F90:127:29: + + integer :: this_pe_grid = 0 + 1 +Warning: Unused PRIVATE module variable ‘this_pe_grid’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_mp_mod.F90:1300:21: + + integer :: i,j,k + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_mp_mod.F90:1300:23: + + integer :: i,j,k + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_mp_mod.F90:1260:21: + + integer :: i,j,k + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_mp_mod.F90:1260:23: + + integer :: i,j,k + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_mp_mod.F90:1228:21: + + integer :: i,j + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_mp_mod.F90:1228:23: + + integer :: i,j + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_mp_mod.F90:1196:21: + + integer :: i,j + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_mp_mod.F90:1196:23: + + integer :: i,j + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_mp_mod.F90:985:66: + + subroutine switch_current_domain(new_domain,new_domain_for_coupler) + 1 +Warning: Unused dummy argument ‘new_domain_for_coupler’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_mp_mod.F90:965:18: + + integer :: n, i1, i2, j1, j2, i + 1 +Warning: Unused variable ‘i1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_mp_mod.F90:965:22: + + integer :: n, i1, i2, j1, j2, i + 1 +Warning: Unused variable ‘i2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_mp_mod.F90:965:26: + + integer :: n, i1, i2, j1, j2, i + 1 +Warning: Unused variable ‘j1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_mp_mod.F90:965:30: + + integer :: n, i1, i2, j1, j2, i + 1 +Warning: Unused variable ‘j2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_mp_mod.F90:821:20: + + integer :: dirflag + 1 +Warning: Unused variable ‘dirflag’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_mp_mod.F90:366:18: + + integer i + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_mp_mod.F90:370:42: + + logical, pointer :: square_domain + 1 +Warning: Unused variable ‘square_domain’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_mp_mod.F90:268:23: + + integer :: ios + 1 +Warning: Unused variable ‘ios’ declared at (1) [-Wunused-variable] +[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/post_gfs_stub.F90:43:56: + + subroutine post_getattr_gfs(wrt_int_state, fldbundle) + 1 +Warning: Unused dummy argument ‘fldbundle’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/post_gfs_stub.F90:43:45: + + subroutine post_getattr_gfs(wrt_int_state, fldbundle) + 1 +Warning: Unused dummy argument ‘wrt_int_state’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/post_gfs_stub.F90:16:64: + + subroutine post_run_gfs(wrt_int_state,mypei,mpicomp,lead_write, & + 1 +Warning: Unused dummy argument ‘lead_write’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/post_gfs_stub.F90:16:53: + + subroutine post_run_gfs(wrt_int_state,mypei,mpicomp,lead_write, & + 1 +Warning: Unused dummy argument ‘mpicomp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/post_gfs_stub.F90:17:19: + + mynfhr,mynfmin,mynfsec) + 1 +Warning: Unused dummy argument ‘mynfhr’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/post_gfs_stub.F90:17:27: + + mynfhr,mynfmin,mynfsec) + 1 +Warning: Unused dummy argument ‘mynfmin’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/post_gfs_stub.F90:17:35: + + mynfhr,mynfmin,mynfsec) + 1 +Warning: Unused dummy argument ‘mynfsec’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/post_gfs_stub.F90:16:45: + + subroutine post_run_gfs(wrt_int_state,mypei,mpicomp,lead_write, & + 1 +Warning: Unused dummy argument ‘mypei’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/post_gfs_stub.F90:16:39: + + subroutine post_run_gfs(wrt_int_state,mypei,mpicomp,lead_write, & + 1 +Warning: Unused dummy argument ‘wrt_int_state’ at (1) [-Wunused-dummy-argument] +[ 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/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:1571:16: + + do k=km-1, km-k_inc, -1 + 1 +Warning: Deleted feature: End expression in DO loop at (1) must be integer +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:1571:16: Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:1575:12: + + s_fac(km-k_inc-1) = 0.5*(s_fac(km-k_inc) + s_rate) + 1 +Warning: Legacy Extension: REAL array index at (1) +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:1575:37: + + s_fac(km-k_inc-1) = 0.5*(s_fac(km-k_inc) + s_rate) + 1 +Warning: Legacy Extension: REAL array index at (1) +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:1577:11: + + do k=km-k_inc-2, 5, -1 + 1 +Warning: Deleted feature: Start expression in DO loop at (1) must be integer +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:1577:11: Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:2849:32: + + real, allocatable:: delz(:,:,:) + 1 +Warning: Unused variable ‘delz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:2848:20: + + logical:: filter_xy = .false. + 1 +Warning: Unused variable ‘filter_xy’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:2855:24: + + integer ks(is:ie,js:je) + 1 +Warning: Unused variable ‘ks’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:2856:24: + + integer i, j, k, ks_min, kint + 1 +Warning: Unused variable ‘ks_min’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:2854:9: + + real sig, z_rat + 1 +Warning: Unused variable ‘sig’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:2852:23: + + real:: z1(is:ie,js:je) + 1 +Warning: Unused variable ‘z1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:2804:15: + + real dz0, dz1 + 1 +Warning: Unused variable ‘dz1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:2734:14: + + real dzt(km) + 1 +Warning: Unused variable ‘dzt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:2738:26: + + integer k, k0, k1, k2, n + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:2532:20: + + real ep, es, alpha, beta, gama + 1 +Warning: Unused variable ‘alpha’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:2532:26: + + real ep, es, alpha, beta, gama + 1 +Warning: Unused variable ‘beta’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:2530:35: + + real, dimension(km):: s_fac, dlnp + 1 +Warning: Unused variable ‘dlnp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:2532:9: + + real ep, es, alpha, beta, gama + 1 +Warning: Unused variable ‘ep’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:2532:13: + + real ep, es, alpha, beta, gama + 1 +Warning: Unused variable ‘es’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:2529:44: + + real, dimension(km+1):: ze, pe1, peln, eta + 1 +Warning: Unused variable ‘eta’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:2532:32: + + real ep, es, alpha, beta, gama + 1 +Warning: Unused variable ‘gama’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:2529:33: + + real, dimension(km+1):: ze, pe1, peln, eta + 1 +Warning: Unused variable ‘pe1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:2529:39: + + real, dimension(km+1):: ze, pe1, peln, eta + 1 +Warning: Unused variable ‘peln’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:2531:9: + + real t0, dz0, sum1, tmp1 + 1 +Warning: Unused variable ‘t0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:2531:26: + + real t0, dz0, sum1, tmp1 + 1 +Warning: Unused variable ‘tmp1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:448:31: + + real press(km+1), pt1(km) + 1 +Warning: Unused variable ‘pt1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:1538:0: + + subroutine var_les(km, ak, bk, ptop, ks, pint, s_rate) + +Warning: ‘var_les’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:2040:0: + + subroutine var_hi2(km, ak, bk, ptop, ks, pint, s_rate) + +Warning: ‘var_hi2’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_eta.F90:2360:0: + + subroutine var55_dz(km, ak, bk, ptop, ks, pint, s_rate) + +Warning: ‘var55_dz’ defined but not used [-Wunused-function] +[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_timing.F90:59:35: + + real , private :: etime + 1 +Warning: Unused PRIVATE module variable ‘etime’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_timing.F90:61:39: + + real , private :: tarray(2) + 1 +Warning: Unused PRIVATE module variable ‘tarray’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_timing.F90:70:46: + + real , private :: us_tmp1(nblks,2) + 1 +Warning: Unused PRIVATE module variable ‘us_tmp1’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_timing.F90:71:46: + + real , private :: us_tmp2(nblks,2) + 1 +Warning: Unused PRIVATE module variable ‘us_tmp2’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_timing.F90:253:30: + + type (tms) :: others, tmp(nblks) + 1 +Warning: Unused variable ‘others’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_timing.F90:187:21: + + integer :: C, R, M + 1 +Warning: Unused variable ‘c’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_timing.F90:187:27: + + integer :: C, R, M + 1 +Warning: Unused variable ‘m’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_timing.F90:187:24: + + integer :: C, R, M + 1 +Warning: Unused variable ‘r’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_timing.F90:127:21: + + integer :: C, R, M + 1 +Warning: Unused variable ‘c’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_timing.F90:130:21: + + integer ierr + 1 +Warning: Unused variable ‘ierr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_timing.F90:127:27: + + integer :: C, R, M + 1 +Warning: Unused variable ‘m’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_timing.F90:127:24: + + integer :: C, R, M + 1 +Warning: Unused variable ‘r’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_timing.F90:81:22: + + integer :: C, R, M + 1 +Warning: Unused variable ‘c’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_timing.F90:81:28: + + integer :: C, R, M + 1 +Warning: Unused variable ‘m’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_timing.F90:81:25: + + integer :: C, R, M + 1 +Warning: Unused variable ‘r’ declared at (1) [-Wunused-variable] +[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:2801:19: + + ASLAT(J)=ASLATD(J) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:2816:19: + + ASLAT(J)=COS((J-1)*DLT) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:2834:19: + + ASLAT(J)=COS((J-0.5)*DLT) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1674:37: + + uwind3dr4(i,j,k) = cart3dPtr3dr4(1,i,j,k) * coslon & + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1676:36: + + vwind3dr4(i,j,k) =-cart3dPtr3dr4(1,i,j,k) * sinlat*sinlon & + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1705:35: + + uwind2dr4(i,j) = cart3dPtr2dr4(1,i,j) * coslon & + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1707:34: + + vwind2dr4(i,j) =-cart3dPtr2dr4(1,i,j) * sinlat*sinlon & + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1727:28: + + pressfc(i,j) = pressfc(i,j)**(grav/(rdgas*stndrd_atmos_lapse))*stndrd_atmos_ps + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1252:19: + + nf_seconds = nf_hours*3600+nf_minuteS*60+nseconds+real(nseconds_num)/real(nseconds_den) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1264:15: + + ndig = max(log10(nf_hours+0.5)+1., 3.) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1268:15: + + ndig = max(log10(nf_hours+0.5)+1., 3.) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2582:52: + + buffer_phys_bl(i,j,nstt(idx)+k-1) = work(i-isco+1,j-jsco+1,k) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2591:52: + + buffer_phys_nb(i,j,nstt(idx)+k-1) = work(i-isco+1,j-jsco+1,k) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2601:52: + + buffer_phys_bl(i,j,nstt(idx)+k-1) = work(i-isco+1,j-jsco+1,k) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2639:53: + + buffer_phys_windvect(1,i,j,nv) = uwork3d(i,j,k)*coslon(i,j) & + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2641:53: + + buffer_phys_windvect(2,i,j,nv) = uwork3d(i,j,k)*sinlon(i,j) & + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2643:53: + + buffer_phys_windvect(3,i,j,nv) = work(i1,j1,k)*coslat(i,j) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2501:46: + + buffer_phys_bl(i,j,nstt(idx)) = work(i-isco+1,j-jsco+1) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2508:46: + + buffer_phys_nb(i,j,nstt(idx)) = work(i-isco+1,j-jsco+1) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2516:46: + + buffer_phys_bl(i,j,nstt(idx)) = work(i-isco+1,j-jsco+1) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2542:51: + + buffer_phys_windvect(1,i,j,nv) = uwork(i,j)*coslon - work(i1,j1)*sinlat*sinlon + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2543:51: + + buffer_phys_windvect(2,i,j,nv) = uwork(i,j)*sinlon + work(i1,j1)*sinlat*coslon + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2544:71: + + buffer_phys_windvect(3,i,j,nv) = work(i1,j1)*cos(lat(i,j)) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2127:13: + + dtp = Model%dtp + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:83:38: + + REAL(KIND=8) :: btim,btim0 + 1 +Warning: Unused PRIVATE module variable ‘btim’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:71:37: + + logical,save :: first_init=.false. + 1 +Warning: Unused PRIVATE module variable ‘first_init’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:72:36: + + logical,save :: first_run=.false. + 1 +Warning: Unused PRIVATE module variable ‘first_run’ declared at (1) [-Wunused-value] +mpif.h:561:54: + +Warning: Unused PRIVATE module variable ‘mpi_statuses_ignore’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:77:55: + + type(wrt_internal_state),pointer :: wrt_int_state ! The internal state pointer. + 1 +Warning: Unused PRIVATE module variable ‘wrt_int_state’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:1088:21: + + vegtyp = Sfcprop(nb)%vtype(ix) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:1226:41: + + vegtyp = Sfcprop(nb)%vtype(ix) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:1353:25: + + soiltyp = Sfcprop(nb)%stype(ix) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:3068:34: + + integer :: i,j,n,idx + 1 +Warning: Unused variable ‘idx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:3026:58: + + real(ESMF_KIND_R8) :: en,f,rho,rho0, dlon, theta, xp, yp + 1 +Warning: Unused variable ‘xp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:3026:62: + + real(ESMF_KIND_R8) :: en,f,rho,rho0, dlon, theta, xp, yp + 1 +Warning: Unused variable ‘yp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:2871:33: + + real(8) :: dlt,d1=1.d0 + 1 +Warning: Unused variable ‘d1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:2872:37: + + integer(4) :: jhe,jho,j0=0 + 1 +Warning: Unused variable ‘j0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:2876:19: + + integer jh,js,n,j + 1 +Warning: Unused variable ‘js’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:2761:33: + + real(8) :: dlt,d1=1.d0 + 1 +Warning: Unused variable ‘d1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:2762:37: + + integer :: jhe,jho,j0=0 + 1 +Warning: Unused variable ‘j0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:2766:19: + + integer jh,js,n,j + 1 +Warning: Unused variable ‘js’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:2581:50: + + character(800) :: msg + 1 +Warning: Unused variable ‘msg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:2064:60: + + subroutine ioCompRun(comp, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘clock’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:2064:53: + + subroutine ioCompRun(comp, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘exportstate’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1777:52: + + character(1024) :: msgString + 1 +Warning: Unused variable ‘msgstring’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_sg.F90:1352:17: + + it = ap1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_sg.F90:1372:20: + + it = ap1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1576:70: + + real(ESMF_KIND_R8), dimension(:,:,:,:), pointer :: cart3dPtr3dr8 + 1 +Warning: Unused variable ‘cart3dptr3dr8’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1563:51: + + integer istart,iend,jstart,jend,kstart,kend,km + 1 +Warning: Unused variable ‘km’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1503:79: + + subroutine wrt_finalize(wrt_comp, imp_state_write, exp_state_write, clock, rc) + 1 +Warning: Unused dummy argument ‘clock’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1503:72: + + subroutine wrt_finalize(wrt_comp, imp_state_write, exp_state_write, clock, rc) + 1 +Warning: Unused dummy argument ‘exp_state_write’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1503:55: + + subroutine wrt_finalize(wrt_comp, imp_state_write, exp_state_write, clock, rc) + 1 +Warning: Unused dummy argument ‘imp_state_write’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1131:57: + + type(ESMF_Array) :: array_work + 1 +Warning: Unused variable ‘array_work’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1162:57: + + integer :: attrValueI + 1 +Warning: Unused variable ‘attrvaluei’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1163:57: + + real :: attrValueR + 1 +Warning: Unused variable ‘attrvaluer’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1161:57: + + character(80) :: attrValueS + 1 +Warning: Unused variable ‘attrvalues’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1158:76: + + character(filename_maxstr) :: filename,compname,bundle_name + 1 +Warning: Unused variable ‘bundle_name’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1176:68: + + real(kind=ESMF_KIND_R8), dimension(:,:,:), pointer :: datar8 + 1 +Warning: Unused variable ‘datar8’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1177:70: + + real(kind=ESMF_KIND_R8), dimension(:,:), pointer :: datar82d + 1 +Warning: Unused variable ‘datar82d’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1128:55: + + type(ESMF_TypeKind_Flag) :: datatype + 1 +Warning: Unused variable ‘datatype’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1152:53: + + REAL :: DEGRAD + 1 +Warning: Unused variable ‘degrad’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1175:34: + + integer fieldcount, dimCount + 1 +Warning: Unused variable ‘dimcount’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1170:40: + + real(kind=8) :: times,times2,etim + 1 +Warning: Unused variable ‘etim’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1110:67: + + subroutine wrt_run(wrt_comp, imp_state_write, exp_state_write,clock,rc) + 1 +Warning: Unused dummy argument ‘exp_state_write’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1129:57: + + type(ESMF_Field) :: field_work + 1 +Warning: Unused variable ‘field_work’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1175:24: + + integer fieldcount, dimCount + 1 +Warning: Unused variable ‘fieldcount’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1156:57: + + logical,save :: file_first=.true. + 1 +Warning: Unused variable ‘file_first’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1155:52: + + logical,save :: first=.true. + 1 +Warning: Unused variable ‘first’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1130:56: + + type(ESMF_Grid) :: grid_work, fbgrid + 1 +Warning: Unused variable ‘grid_work’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1149:56: + + integer :: nbdl, idx, date(6), ndig + 1 +Warning: Unused variable ‘idx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1139:53: + + integer,dimension(:),allocatable,save :: ih_int, ih_real + 1 +Warning: Unused variable ‘ih_int’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1139:62: + + integer,dimension(:),allocatable,save :: ih_int, ih_real + 1 +Warning: Unused variable ‘ih_real’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1143:50: + + integer :: i,j,n,mype,nolog + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1179:24: + + integer myattCount + 1 +Warning: Unused variable ‘myattcount’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1141:54: + + INTEGER,SAVE :: NPOSN_1,NPOSN_2 + 1 +Warning: Unused variable ‘nposn_1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1141:62: + + INTEGER,SAVE :: NPOSN_1,NPOSN_2 + 1 +Warning: Unused variable ‘nposn_2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1160:57: + + character(10) :: stepString + 1 +Warning: Unused variable ‘stepstring’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1172:32: + + real(kind=8) :: tbeg,tend + 1 +Warning: Unused variable ‘tend’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1171:28: + + character(10) :: timeb + 1 +Warning: Unused variable ‘timeb’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1170:28: + + real(kind=8) :: times,times2,etim + 1 +Warning: Unused variable ‘times’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1170:35: + + real(kind=8) :: times,times2,etim + 1 +Warning: Unused variable ‘times2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:1169:32: + + real(kind=8) :: wait_time, MPI_Wtime + 1 +Warning: Unused variable ‘wait_time’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:154:59: + + type(ESMF_Array) :: array_work, array + 1 +Warning: Unused variable ‘array_work’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:180:73: + + real, dimension(:), allocatable :: lat, lon, axesdata + 1 +Warning: Unused variable ‘axesdata’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:176:34: + + integer :: attCount, axeslen, jidx, noutfile + 1 +Warning: Unused variable ‘axeslen’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:151:68: + + character(40) :: fieldName, axesname,longname + 1 +Warning: Unused variable ‘axesname’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:188:42: + + type(ESMF_DataCopy_Flag) :: copyflag=ESMF_DATACOPY_REFERENCE + 1 +Warning: Unused variable ‘copyflag’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:130:74: + + subroutine wrt_initialize(wrt_comp, imp_state_write, exp_state_write, clock, rc) + 1 +Warning: Unused dummy argument ‘exp_state_write’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:155:62: + + type(ESMF_FieldBundle) :: fieldbdl_work + 1 +Warning: Unused variable ‘fieldbdl_work’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:194:54: + + logical,save :: first=.true. + 1 +Warning: Unused variable ‘first’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:147:54: + + integer :: ISTAT, tl, i, j, n, k + 1 +Warning: Unused variable ‘istat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:151:77: + + character(40) :: fieldName, axesname,longname + 1 +Warning: Unused variable ‘longname’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:197:24: + + integer myattCount + 1 +Warning: Unused variable ‘myattcount’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:160:62: + + type(ESMF_FieldBundle) :: fcstFB, wrtFB, fieldbundle + 1 +Warning: Unused variable ‘wrtfb’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:93:25: + + logical :: lprecip_accu + 1 +Warning: Unused PRIVATE module variable ‘lprecip_accu’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:111:34: + + logical :: module_is_initialized = .FALSE. + 1 +Warning: Unused PRIVATE module variable ‘module_is_initialized’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:94:36: + + character(len=64) :: Sprecip_accu + 1 +Warning: Unused PRIVATE module variable ‘sprecip_accu’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:86:31: + + real(kind=kind_phys) :: zhour + 1 +Warning: Unused PRIVATE module variable ‘zhour’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:3125:28: + + integer i,in_num, out_num + 1 +Warning: Unused variable ‘out_num’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2927:82: + + kstt,phys_bundle,output_file,intpl_method,range,l2dvector,rcd) + 1 +Warning: Unused dummy argument ‘range’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2689:23: + + character(2) axis_id + 1 +Warning: Unused variable ‘axis_id’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2686:54: + + integer id, axis_length, direction, edges, axis_typ + 1 +Warning: Unused variable ‘axis_typ’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2688:22: + + integer currdate(6) + 1 +Warning: Unused variable ‘currdate’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2699:59: + + real(4),dimension(:,:),pointer :: dataPtr2d + 1 +Warning: Unused variable ‘dataptr2d’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2695:29: + + type(ESMF_Field) :: field + 1 +Warning: Unused variable ‘field’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2685:15: + + integer i, j, k, n, rc, idx, ibdl, nbdl + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2685:18: + + integer i, j, k, n, rc, idx, ibdl, nbdl + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2685:21: + + integer i, j, k, n, rc, idx, ibdl, nbdl + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2685:42: + + integer i, j, k, n, rc, idx, ibdl, nbdl + 1 +Warning: Unused variable ‘nbdl’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2687:40: + + integer num_attributes, num_field_dyn + 1 +Warning: Unused variable ‘num_field_dyn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_sg.F90:1389:32: + + real esbasw, tbasw, esbasi, tbasi, Tmin, tem, aa, b, c, d, e, esh20 + 1 +Warning: Unused variable ‘esbasi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_sg.F90:1389:73: + + real esbasw, tbasw, esbasi, tbasi, Tmin, tem, aa, b, c, d, e, esh20 + 1 +Warning: Unused variable ‘esh20’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_sg.F90:1390:21: + + real wice, wh2o + 1 +Warning: Unused variable ‘wh2o’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_sg.F90:1390:15: + + real wice, wh2o + 1 +Warning: Unused variable ‘wice’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_sg.F90:1336:21: + + integer i, k, it, n + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_sg.F90:148:53: + + integer i, j, k, kk, n, m, iq, km1, im, kbot, l + 1 +Warning: Unused variable ‘l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_sg.F90:115:63: + + hydrostatic, w, delz, u_dt, v_dt, t_dt, k_bot ) + 1 +Warning: Unused dummy argument ‘t_dt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2572:20: + + integer k,j,i,kb,nv,i1,j1 + 1 +Warning: Unused variable ‘kb’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_sg.F90:146:63: + + real tv1, tv2, g2, h0, mc, fra, rk, rz, rdt, tvd, tv_surf + 1 +Warning: Unused variable ‘tv_surf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_sg.F90:146:54: + + real tv1, tv2, g2, h0, mc, fra, rk, rz, rdt, tvd, tv_surf + 1 +Warning: Unused variable ‘tvd’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2492:13: + + integer k,j,i,kb,nv,i1,j1 + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2492:20: + + integer k,j,i,kb,nv,i1,j1 + 1 +Warning: Unused variable ‘kb’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2220:73: + + subroutine fv3gfs_diag_output(time, diag, atm_block, nx, ny, levs, ntcw, ntoz, & + 1 +Warning: Unused dummy argument ‘ntcw’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2220:79: + + subroutine fv3gfs_diag_output(time, diag, atm_block, nx, ny, levs, ntcw, ntoz, & + 1 +Warning: Unused dummy argument ‘ntoz’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2242:19: + + logical :: used + 1 +Warning: Unused variable ‘used’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2236:56: + + real(kind=kind_phys), dimension(nx*ny) :: var2p + 1 +Warning: Unused variable ‘var2p’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2237:56: + + real(kind=kind_phys), dimension(nx*ny,levs) :: var3p + 1 +Warning: Unused variable ‘var3p’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2235:28: + + character(len=2) :: xtra + 1 +Warning: Unused variable ‘xtra’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:2020:62: + + subroutine phys_restart_write (IPD_Restart, Atm_block, Model, fv_domain, timestamp) + 1 +Warning: Unused dummy argument ‘model’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:1432:22: + + integer :: i, j, k, nb, ix, lsoil, num + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:494:43: + + integer :: soiltyp,ns,imon,iter,imn + 1 +Warning: Unused variable ‘imon’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:476:22: + + integer :: i, j, k, ix, lsoil, num, nb + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/module_wrt_grid_comp.F90:2737:0: + + subroutine splat4(idrt,jmax,aslat) + +Warning: ‘splat4’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/FV3GFS_io.F90:179:64: + + integer :: outunit, j, i, ix, nb, isc, iec, jsc, jec, lev, ct, l, ntr + 1 +Warning: Unused variable ‘ct’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_sg.F90:1411:0: + + subroutine qs_table_m(n,table) + +Warning: ‘qs_table_m’ defined but not used [-Wunused-function] +[ 80%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/ffsync.F90:26:26: + + integer :: cfd + 1 +Warning: Unused variable ‘cfd’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/ffsync.F90:1:38: + + INTEGER FUNCTION FFSYNC(fn) + 1 +Warning: Unused dummy argument ‘fn’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/io/ffsync.F90:28:28: + + integer :: getfd + 1 +Warning: Unused variable ‘getfd’ declared at (1) [-Wunused-variable] +[ 80%] 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:3303:13: + + f(1,i) = f(1,i) - ap*e(1,i) + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:3304:13: + + f(2,i) = f(2,i) - ap*e(2,i) + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:3305:13: + + f(3,i) = f(3,i) - ap*e(3,i) + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:3136:13: + + p4 = g_sum(domain, pem, is, ie, js, je, ng, area, 1) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:2896:15: + + cos_angle = angle + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:2849:21: + + spherical_angle = angle + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1641:11: + + e(1) = e1 + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1642:11: + + e(2) = e2 + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1643:11: + + e(3) = e3 + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:2029:31: + + great_circle_dist = radius * beta + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:2031:31: + + great_circle_dist = beta ! Returns the angle + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1745:13: + + xs(i) = lon + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1746:13: + + ys(i) = lat + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1749:17: + + q(k,i) = p(k) + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:2622:17: + + ec(k) = ec(k) / dd ! cell center position + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:2641:18: + + qq1(k) = qq1(k) / d1 + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:2642:18: + + qq2(k) = qq2(k) / d2 + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:2643:18: + + qq3(k) = qq3(k) / d3 + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:2644:18: + + qq4(k) = qq4(k) / d4 + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:2260:16: + + elon(1) = -sin_lon + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:2261:17: + + elon(2) = cos_lon + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:2264:16: + + elat(1) = -sin_lat*cos_lon + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:2265:16: + + elat(2) = -sin_lat*sin_lon + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:2266:17: + + elat(3) = cos_lat + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1990:14: + + e(1) = e1 + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1991:14: + + e(2) = e2 + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1992:14: + + e(3) = e3 + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1861:14: + + e(k) = e(k) / pdot + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1428:19: + + theta(1,j) = theta(1,j-1) + dely + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1429:22: + + theta(in+1,j) = theta(in+1,j-1) + dely + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1434:19: + + theta(1,j) = theta(1,j+1) - dely + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1435:22: + + theta(in+1,j) = theta(in+1,j+1) - dely + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1464:18: + + pp(2,i,j) = -pp(2,i,j)*rsq3/pp(1,i,j) + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1465:18: + + pp(3,i,j) = -pp(3,i,j)*rsq3/pp(1,i,j) + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1471:18: + + pp(2,i,1) = -pp(2,i,1)*rsq3/pp(1,i,1) + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1472:18: + + pp(3,i,1) = -pp(3,i,1)*rsq3/pp(1,i,1) + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1479:21: + + pp(1,i,j) = -rsq3 + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1333:20: + + theta(1, j) = -alpha + dely*real(j-1,kind=f_p) ! West edge + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1358:16: + + pp(2,i,j) = -pp(2,i,j)*rsq3/pp(1,i,j) + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1359:16: + + pp(3,i,j) = -pp(3,i,j)*rsq3/pp(1,i,j) + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1365:16: + + pp(2,i,1) = -pp(2,i,1)*rsq3/pp(1,i,1) + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1366:16: + + pp(3,i,1) = -pp(3,i,1)*rsq3/pp(1,i,1) + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1371:19: + + pp(1,i,j) = -rsq3 + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:982:22: + + inner_prod = prod16 + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:955:26: + + lat(i,j) = sign( p2, sin_o ) + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:957:26: + + lat(i,j) = asin( sin_o ) + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:958:26: + + lon(i,j) = lon_p + atan2( -cos_lat*sin(lon(i,j)), & + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:961:31: + + lon(i,j) = lon(i,j) + two_pi + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:963:31: + + lon(i,j) = lon(i,j) - two_pi + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/boundary.F90:1858:50: + + integer :: istart, istop, jstart, jstop, ishift, jshift, j, i, k + 1 +Warning: Unused variable ‘ishift’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/boundary.F90:1858:20: + + integer :: istart, istop, jstart, jstop, ishift, jshift, j, i, k + 1 +Warning: Unused variable ‘istart’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/boundary.F90:1858:27: + + integer :: istart, istop, jstart, jstop, ishift, jshift, j, i, k + 1 +Warning: Unused variable ‘istop’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/boundary.F90:1858:58: + + integer :: istart, istop, jstart, jstop, ishift, jshift, j, i, k + 1 +Warning: Unused variable ‘jshift’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/boundary.F90:1858:35: + + integer :: istart, istop, jstart, jstop, ishift, jshift, j, i, k + 1 +Warning: Unused variable ‘jstart’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/boundary.F90:1858:42: + + integer :: istart, istop, jstart, jstop, ishift, jshift, j, i, k + 1 +Warning: Unused variable ‘jstop’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/boundary.F90:1835:29: + + isu, ieu, jsu, jeu, npx, npy, npz, & + 1 +Warning: Unused dummy argument ‘npx’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/boundary.F90:1835:34: + + isu, ieu, jsu, jeu, npx, npy, npz, & + 1 +Warning: Unused dummy argument ‘npy’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/boundary.F90:1683:16: + + BC, bctype) + 1 +Warning: Unused dummy argument ‘bctype’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/boundary.F90:1697:29: + + logical, save :: printdiag = .true. + 1 +Warning: Unused variable ‘printdiag’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/boundary.F90:1447:48: + + subroutine nested_grid_BC_save_proc(nest_domain, ind, wt, istag, jstag, & + 1 +Warning: Unused dummy argument ‘nest_domain’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/boundary.F90:1466:43: + + integer :: position + 1 +Warning: Unused variable ‘position’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/boundary.F90:1470:21: + + logical :: process, pd = .false. + 1 +Warning: Unused variable ‘process’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/boundary.F90:1461:83: + + real, dimension(bd%isd:bd%ied+istag,bd%jsd:bd%jed+jstag,npz) :: var_coarse_dummy + 1 +Warning: Unused variable ‘var_coarse_dummy’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/boundary.F90:853:42: + + integer :: i,j, ic, jc, istart, iend, k + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/boundary.F90:832:59: + + npx, npy, bd, isg, ieg, jsg, jeg, nstep_in, nsplit_in, proc_in) + 1 +Warning: Unused dummy argument ‘nsplit_in’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/boundary.F90:832:48: + + npx, npy, bd, isg, ieg, jsg, jeg, nstep_in, nsplit_in, proc_in) + 1 +Warning: Unused dummy argument ‘nstep_in’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/boundary.F90:797:15: + + integer :: i,j, ic, jc, istart, iend, k + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/boundary.F90:797:21: + + integer :: i,j, ic, jc, istart, iend, k + 1 +Warning: Unused variable ‘ic’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/boundary.F90:797:39: + + integer :: i,j, ic, jc, istart, iend, k + 1 +Warning: Unused variable ‘iend’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/boundary.F90:797:33: + + integer :: i,j, ic, jc, istart, iend, k + 1 +Warning: Unused variable ‘istart’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/boundary.F90:797:17: + + integer :: i,j, ic, jc, istart, iend, k + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/boundary.F90:797:25: + + integer :: i,j, ic, jc, istart, iend, k + 1 +Warning: Unused variable ‘jc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/boundary.F90:797:42: + + integer :: i,j, ic, jc, istart, iend, k + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/boundary.F90:579:64: + + npx, npy, npz, bd, isg, ieg, jsg, jeg, nstep_in, nsplit_in, proc_in) + 1 +Warning: Unused dummy argument ‘nsplit_in’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/boundary.F90:579:53: + + npx, npy, npz, bd, isg, ieg, jsg, jeg, nstep_in, nsplit_in, proc_in) + 1 +Warning: Unused dummy argument ‘nstep_in’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:2913:44: + + real :: tmp(ifirst:ilast,jfirst:jlast) + 1 +Warning: Unused variable ‘tmp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:2280:58: + + subroutine init_cubed_to_latlon( gridstruct, hydrostatic, agrid, grid_type, ord, bd ) + 1 +Warning: Unused dummy argument ‘hydrostatic’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:2280:81: + + subroutine init_cubed_to_latlon( gridstruct, hydrostatic, agrid, grid_type, ord, bd ) + 1 +Warning: Unused dummy argument ‘ord’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:2167:46: + + subroutine intersect_cross(a1,a2,b1,b2,radius,x_inter,local_a,local_b) + 1 +Warning: Unused dummy argument ‘radius’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1907:26: + + real(kind=R_GRID):: pm(2) + 1 +Warning: Unused variable ‘pm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1774:17: + + integer i,j,k + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1664:47: + + real(kind=R_GRID):: x1, y1, z1, x2, y2, z2, x0, y0, z0 + 1 +Warning: Unused variable ‘x0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1664:23: + + real(kind=R_GRID):: x1, y1, z1, x2, y2, z2, x0, y0, z0 + 1 +Warning: Unused variable ‘x1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1664:35: + + real(kind=R_GRID):: x1, y1, z1, x2, y2, z2, x0, y0, z0 + 1 +Warning: Unused variable ‘x2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1664:51: + + real(kind=R_GRID):: x1, y1, z1, x2, y2, z2, x0, y0, z0 + 1 +Warning: Unused variable ‘y0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1664:27: + + real(kind=R_GRID):: x1, y1, z1, x2, y2, z2, x0, y0, z0 + 1 +Warning: Unused variable ‘y1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1664:39: + + real(kind=R_GRID):: x1, y1, z1, x2, y2, z2, x0, y0, z0 + 1 +Warning: Unused variable ‘y2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1664:55: + + real(kind=R_GRID):: x1, y1, z1, x2, y2, z2, x0, y0, z0 + 1 +Warning: Unused variable ‘z0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1664:31: + + real(kind=R_GRID):: x1, y1, z1, x2, y2, z2, x0, y0, z0 + 1 +Warning: Unused variable ‘z1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1664:43: + + real(kind=R_GRID):: x1, y1, z1, x2, y2, z2, x0, y0, z0 + 1 +Warning: Unused variable ‘z2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1621:31: + + subroutine latlon2xyz(p, e, id) + 1 +Warning: Unused dummy argument ‘id’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1547:48: + + real(kind=R_GRID) rsq3, xf, y0, z0, y, x, z, ds + 1 +Warning: Unused variable ‘ds’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1547:41: + + real(kind=R_GRID) rsq3, xf, y0, z0, y, x, z, ds + 1 +Warning: Unused variable ‘x’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1547:38: + + real(kind=R_GRID) rsq3, xf, y0, z0, y, x, z, ds + 1 +Warning: Unused variable ‘y’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1547:44: + + real(kind=R_GRID) rsq3, xf, y0, z0, y, x, z, ds + 1 +Warning: Unused variable ‘z’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1520:48: + + real(kind=R_GRID) rsq3, xf, y0, z0, y, x, z, ds + 1 +Warning: Unused variable ‘ds’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1521:21: + + real(kind=R_GRID) dy, dz + 1 +Warning: Unused variable ‘dy’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1521:25: + + real(kind=R_GRID) dy, dz + 1 +Warning: Unused variable ‘dz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1520:41: + + real(kind=R_GRID) rsq3, xf, y0, z0, y, x, z, ds + 1 +Warning: Unused variable ‘x’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1520:27: + + real(kind=R_GRID) rsq3, xf, y0, z0, y, x, z, ds + 1 +Warning: Unused variable ‘xf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1520:38: + + real(kind=R_GRID) rsq3, xf, y0, z0, y, x, z, ds + 1 +Warning: Unused variable ‘y’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1520:31: + + real(kind=R_GRID) rsq3, xf, y0, z0, y, x, z, ds + 1 +Warning: Unused variable ‘y0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1520:44: + + real(kind=R_GRID) rsq3, xf, y0, z0, y, x, z, ds + 1 +Warning: Unused variable ‘z’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1520:35: + + real(kind=R_GRID) rsq3, xf, y0, z0, y, x, z, ds + 1 +Warning: Unused variable ‘z0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1413:32: + + real(f_p):: rsq3, alpha, delx, dely + 1 +Warning: Unused variable ‘delx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1414:25: + + integer i, j, k, irefl + 1 +Warning: Unused variable ‘irefl’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1414:18: + + integer i, j, k, irefl + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1317:30: + + real(f_p):: rsq3, alpha, delx, dely + 1 +Warning: Unused variable ‘delx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1318:16: + + integer i, j, k + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1179:31: + + integer :: isd, ied, jsd, jed + 1 +Warning: Unused variable ‘jed’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:152:24: + + integer i, j, k, n, ip + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:149:50: + + real(kind=R_GRID) p1(3), p2(3), p3(3), p4(3), pp(3), ex(3), ey(3), e1(3), e2(3) + 1 +Warning: Unused variable ‘p4’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:151:28: + + real(kind=R_GRID) sin2, tmp1, tmp2 + 1 +Warning: Unused variable ‘sin2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1404:0: + + subroutine gnomonic_ed_limited(im, in, nghost, lL, lR, uL, uR, lamda, theta) + +Warning: ‘gnomonic_ed_limited’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1650:0: + + subroutine mirror_xyz(p1, p2, p0, p) + +Warning: ‘mirror_xyz’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:1837:0: + + subroutine get_unit_vect3( p1, p2, uc ) + +Warning: ‘get_unit_vect3’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:2075:0: + + subroutine intersect(a1,a2,b1,b2,radius,x_inter,local_a,local_b) + +Warning: ‘intersect’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:2167:0: + + subroutine intersect_cross(a1,a2,b1,b2,radius,x_inter,local_a,local_b) + +Warning: ‘intersect_cross’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_grid_utils.F90:3172:0: + + subroutine invert_matrix(n, a, x) + +Warning: ‘invert_matrix’ defined but not used [-Wunused-function] +[ 80%] Linking Fortran static library libio.a +[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o +[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o +[ 80%] Built target io +[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_surf_map.F90:1640:13: + + p(i) = zmean + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_mapz.F90:764:15: + + E_Flux = dtmp / (grav*pdt*4.*pi*radius**2) ! unit: W/m**2 + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_mapz.F90:792:15: + + E_Flux = consv + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_surf_map.F90:1196:45: + + q2, f2, h2, npx, npy, jstart, jend, stretch_fac, & + 1 +Warning: Unused dummy argument ‘npx’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_surf_map.F90:1196:50: + + q2, f2, h2, npx, npy, jstart, jend, stretch_fac, & + 1 +Warning: Unused dummy argument ‘npy’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_surf_map.F90:513:33: + + agrid, sin_sg, phis, oro ,regional) + 1 +Warning: Unused dummy argument ‘agrid’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_surf_map.F90:512:94: + + stretch_fac, nested, domain, area, dxa, dya, dx, dy, dxc, dyc, grid, & + 1 +Warning: Unused dummy argument ‘grid’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_surf_map.F90:168:19: + + real dx1, dx2, dy1, dy2, lats, latn, r2d + 1 +Warning: Unused variable ‘dx2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_surf_map.F90:168:29: + + real dx1, dx2, dy1, dy2, lats, latn, r2d + 1 +Warning: Unused variable ‘dy2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_surf_map.F90:172:27: + + integer i, j, n, mdim + 1 +Warning: Unused variable ‘mdim’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_surf_map.F90:172:21: + + integer i, j, n, mdim + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_surf_map.F90:165:35: + + character(len=80) :: topoflnm + 1 +Warning: Unused variable ‘topoflnm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_mapz.F90:3277:66: + + subroutine mappm(km, pe1, q1, kn, pe2, q2, i1, i2, iv, kord, ptop) + 1 +Warning: Unused dummy argument ‘ptop’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_mapz.F90:2994:38: + + ak_r, bk_r, ptop, ak, bk, hydrostatic, make_nh, & + 1 +Warning: Unused dummy argument ‘ptop’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_surf_map.F90:1544:0: + + subroutine remove_ice_sheets (lon, lat, lfrac, bd ) + +Warning: ‘remove_ice_sheets’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_surf_map.F90:1628:0: + + subroutine zonal_mean(im, p, zmean) + +Warning: ‘zonal_mean’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_mapz.F90:1097:20: + + pe, pk, akap, peln, pkz, ptop) + 1 +Warning: Unused dummy argument ‘pe’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_mapz.F90:955:38: + + r_vir, cp, rg, hlv, te_2d, ua, va, teq, & + 1 +Warning: Unused dummy argument ‘r_vir’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_mapz.F90:955:63: + + r_vir, cp, rg, hlv, te_2d, ua, va, teq, & + 1 +Warning: Unused dummy argument ‘ua’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_mapz.F90:955:67: + + r_vir, cp, rg, hlv, te_2d, ua, va, teq, & + 1 +Warning: Unused dummy argument ‘va’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_mapz.F90:144:43: + + hydrostatic, hybrid_z, do_omega, adiabatic, do_adiabatic_init) + 1 +Warning: Unused dummy argument ‘hybrid_z’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_mapz.F90:227:14: + + integer:: nt, liq_wat, ice_wat, rainwat, snowwat, cld_amt, graupel, iq, n, kp, k_next + 1 +Warning: Unused variable ‘nt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_mapz.F90:143:41: + + ptop, ak, bk, pfull, gridstruct, domain, do_sat_adj, & + 1 +Warning: Unused dummy argument ‘pfull’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_mapz.F90:142:32: + + ng, ua, va, omga, te, ws, fill, reproduce_sum, out_dt, dtdt, & + 1 +Warning: Unused dummy argument ‘va’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_mapz.F90:1155:0: + + subroutine remap_z(km, pe1, q1, kn, pe2, q2, i1, i2, iv, kord) + +Warning: ‘remap_z’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_mapz.F90:2935:0: + + subroutine steepz(i1, i2, km, a4, df2, dm, dq, dp, d4) + +Warning: ‘steepz’ defined but not used [-Wunused-function] +[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/tp_core.F90:977:26: + + subroutine mp_ghost_ew(im, jm, km, nq, ifirst, ilast, jfirst, jlast, & + 1 +Warning: Unused dummy argument ‘im’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/tp_core.F90:977:30: + + subroutine mp_ghost_ew(im, jm, km, nq, ifirst, ilast, jfirst, jlast, & + 1 +Warning: Unused dummy argument ‘jm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/tp_core.F90:977:34: + + subroutine mp_ghost_ew(im, jm, km, nq, ifirst, ilast, jfirst, jlast, & + 1 +Warning: Unused dummy argument ‘km’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/tp_core.F90:649:39: + + real, dimension(ifirst:ilast):: fx0, fx1, xt1 + 1 +Warning: Unused variable ‘fx0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/tp_core.F90:632:76: + + subroutine yppm(flux, q, c, jord, ifirst,ilast, isd,ied, js,je,jsd,jed, npx, npy, dya, nested, grid_type, lim_fac,regional) + 1 +Warning: Unused dummy argument ‘npx’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/tp_core.F90:652:52: + + real:: x0, xt, qtmp, pmp_1, lac_1, pmp_2, lac_2, r1 + 1 +Warning: Unused variable ‘r1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/tp_core.F90:339:31: + + real, dimension(is:ie+1):: fx0, fx1, xt1 + 1 +Warning: Unused variable ‘fx0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/tp_core.F90:323:80: + + subroutine xppm(flux, q, c, iord, is,ie,isd,ied, jfirst,jlast,jsd,jed, npx, npy, dxa, nested, grid_type, lim_fac,regional) + 1 +Warning: Unused dummy argument ‘npy’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/tp_core.F90:346:14: + + real:: x0, x1, xt, qtmp, pmp_1, lac_1, pmp_2, lac_2 + 1 +Warning: Unused variable ‘x1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/tp_core.F90:977:0: + + subroutine mp_ghost_ew(im, jm, km, nq, ifirst, ilast, jfirst, jlast, & + +Warning: ‘mp_ghost_ew’ defined but not used [-Wunused-function] +[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:1081:3: + + 202 format(A,A,i4.4,A,i4.4,A) + 1 +Warning: Label 202 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:1080:3: + + 201 format(A,f9.2,A,f9.2,A,f9.2,A,f9.2) + 1 +Warning: Label 201 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:163:28: + + real(kind=R_GRID) :: csFac + 1 +Warning: Unused PRIVATE module variable ‘csfac’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:166:33: + + logical :: write_grid_char_file = .false. + 1 +Warning: Unused PRIVATE module variable ‘write_grid_char_file’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:2292:25: + + integer :: i,j,n,n1,n2,nreg + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:2292:28: + + integer :: i,j,n,n1,n2,nreg + 1 +Warning: Unused variable ‘n1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:2292:31: + + integer :: i,j,n,n1,n2,nreg + 1 +Warning: Unused variable ‘n2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:2056:33: + + real(kind=R_GRID) :: a1, d1, d2, mydx, mydy, globalarea + 1 +Warning: Unused variable ‘a1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:2056:37: + + real(kind=R_GRID) :: a1, d1, d2, mydx, mydy, globalarea + 1 +Warning: Unused variable ‘d1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:2056:41: + + real(kind=R_GRID) :: a1, d1, d2, mydx, mydy, globalarea + 1 +Warning: Unused variable ‘d2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:2056:47: + + real(kind=R_GRID) :: a1, d1, d2, mydx, mydy, globalarea + 1 +Warning: Unused variable ‘mydx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:2056:53: + + real(kind=R_GRID) :: a1, d1, d2, mydx, mydy, globalarea + 1 +Warning: Unused variable ‘mydy’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:2062:31: + + integer :: i,j,n, nreg + 1 +Warning: Unused variable ‘nreg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:2045:50: + + subroutine grid_area(nx, ny, ndims, nregions, nested, gridstruct, domain, bd, regional ) + 1 +Warning: Unused dummy argument ‘nregions’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:2065:54: + + real(kind=R_GRID), allocatable :: p_R8(:,:,:) + 1 +Warning: Unused variable ‘p_r8’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:2058:74: + + real(kind=R_GRID) :: p1(ndims), p2(ndims), p3(ndims), pi1(ndims), pi2(ndims) + 1 +Warning: Unused variable ‘pi1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:2058:86: + + real(kind=R_GRID) :: p1(ndims), p2(ndims), p3(ndims), pi1(ndims), pi2(ndims) + 1 +Warning: Unused variable ‘pi2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:1287:19: + + integer i,j,k, p + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:1287:22: + + integer i,j,k, p + 1 +Warning: Unused variable ‘p’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:548:30: + + real(kind=R_GRID) :: dist,dist1,dist2, pa(2), pa1(2), pa2(2), pb(2) + 1 +Warning: Unused variable ‘dist’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:548:36: + + real(kind=R_GRID) :: dist,dist1,dist2, pa(2), pa1(2), pa2(2), pb(2) + 1 +Warning: Unused variable ‘dist1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:548:42: + + real(kind=R_GRID) :: dist,dist1,dist2, pa(2), pa1(2), pa2(2), pb(2) + 1 +Warning: Unused variable ‘dist2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:550:31: + + real(kind=R_GRID) :: ee1(3), ee2(3) + 1 +Warning: Unused variable ‘ee1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:550:39: + + real(kind=R_GRID) :: ee1(3), ee2(3) + 1 +Warning: Unused variable ‘ee2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:545:22: + + integer :: fileLun + 1 +Warning: Unused variable ‘filelun’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:529:37: + + subroutine init_grid(Atm, grid_name, grid_file, npx, npy, npz, ndims, nregions, ng) + 1 +Warning: Unused dummy argument ‘grid_name’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:564:20: + + integer :: igrid + 1 +Warning: Unused variable ‘igrid’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:562:18: + + integer :: ios, ip, jp + 1 +Warning: Unused variable ‘ios’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:562:22: + + integer :: ios, ip, jp + 1 +Warning: Unused variable ‘ip’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:562:26: + + integer :: ios, ip, jp + 1 +Warning: Unused variable ‘jp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:544:20: + + integer :: i,j,k,n,nreg + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:529:63: + + subroutine init_grid(Atm, grid_name, grid_file, npx, npy, npz, ndims, nregions, ng) + 1 +Warning: Unused dummy argument ‘npz’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:544:27: + + integer :: i,j,k,n,nreg + 1 +Warning: Unused variable ‘nreg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:548:49: + + real(kind=R_GRID) :: dist,dist1,dist2, pa(2), pa1(2), pa2(2), pb(2) + 1 +Warning: Unused variable ‘pa’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:548:57: + + real(kind=R_GRID) :: dist,dist1,dist2, pa(2), pa1(2), pa2(2), pb(2) + 1 +Warning: Unused variable ‘pa1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:548:65: + + real(kind=R_GRID) :: dist,dist1,dist2, pa(2), pa1(2), pa2(2), pb(2) + 1 +Warning: Unused variable ‘pa2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:548:72: + + real(kind=R_GRID) :: dist,dist1,dist2, pa(2), pa1(2), pa2(2), pb(2) + 1 +Warning: Unused variable ‘pb’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:549:31: + + real(kind=R_GRID) :: pt(3), pt1(3), pt2(3), pt3(3) + 1 +Warning: Unused variable ‘pt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:549:39: + + real(kind=R_GRID) :: pt(3), pt1(3), pt2(3), pt3(3) + 1 +Warning: Unused variable ‘pt1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:549:47: + + real(kind=R_GRID) :: pt(3), pt1(3), pt2(3), pt3(3) + 1 +Warning: Unused variable ‘pt2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:549:55: + + real(kind=R_GRID) :: pt(3), pt1(3), pt2(3), pt3(3) + 1 +Warning: Unused variable ‘pt3’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:567:32: + + character(len=80) :: tmpFile + 1 +Warning: Unused variable ‘tmpfile’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:566:21: + + integer :: tmplun + 1 +Warning: Unused variable ‘tmplun’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:557:33: + + real(kind=R_GRID) :: vec1(3), vec2(3), vec3(3), vec4(3) + 1 +Warning: Unused variable ‘vec1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:557:42: + + real(kind=R_GRID) :: vec1(3), vec2(3), vec3(3), vec4(3) + 1 +Warning: Unused variable ‘vec2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:557:51: + + real(kind=R_GRID) :: vec1(3), vec2(3), vec3(3), vec4(3) + 1 +Warning: Unused variable ‘vec3’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:558:45: + + real(kind=R_GRID) :: vecAvg(3), vec3a(3), vec3b(3), vec4a(3), vec4b(3) + 1 +Warning: Unused variable ‘vec3a’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:558:55: + + real(kind=R_GRID) :: vecAvg(3), vec3a(3), vec3b(3), vec4a(3), vec4b(3) + 1 +Warning: Unused variable ‘vec3b’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:557:60: + + real(kind=R_GRID) :: vec1(3), vec2(3), vec3(3), vec4(3) + 1 +Warning: Unused variable ‘vec4’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:558:65: + + real(kind=R_GRID) :: vecAvg(3), vec3a(3), vec3b(3), vec4a(3), vec4b(3) + 1 +Warning: Unused variable ‘vec4a’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:558:75: + + real(kind=R_GRID) :: vecAvg(3), vec3a(3), vec3b(3), vec4a(3), vec4b(3) + 1 +Warning: Unused variable ‘vec4b’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:558:35: + + real(kind=R_GRID) :: vecAvg(3), vec3a(3), vec3b(3), vec4a(3), vec4b(3) + 1 +Warning: Unused variable ‘vecavg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:543:28: + + real(kind=R_GRID) :: x1,x2,y1,y2,z1,z2 + 1 +Warning: Unused variable ‘x1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:543:31: + + real(kind=R_GRID) :: x1,x2,y1,y2,z1,z2 + 1 +Warning: Unused variable ‘x2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:559:33: + + real(kind=R_GRID) :: xyz1(3), xyz2(3) + 1 +Warning: Unused variable ‘xyz1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:559:42: + + real(kind=R_GRID) :: xyz1(3), xyz2(3) + 1 +Warning: Unused variable ‘xyz2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:543:34: + + real(kind=R_GRID) :: x1,x2,y1,y2,z1,z2 + 1 +Warning: Unused variable ‘y1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:543:37: + + real(kind=R_GRID) :: x1,x2,y1,y2,z1,z2 + 1 +Warning: Unused variable ‘y2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:543:40: + + real(kind=R_GRID) :: x1,x2,y1,y2,z1,z2 + 1 +Warning: Unused variable ‘z1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:543:43: + + real(kind=R_GRID) :: x1,x2,y1,y2,z1,z2 + 1 +Warning: Unused variable ‘z2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:321:83: + + integer :: i, j, p, nrecv, nsend, tile_you, is3, ie3, nlist + 1 +Warning: Unused variable ‘ie3’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:321:78: + + integer :: i, j, p, nrecv, nsend, tile_you, is3, ie3, nlist + 1 +Warning: Unused variable ‘is3’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:174:58: + + subroutine read_grid(Atm, grid_file, ndims, nregions, ng) + 1 +Warning: Unused dummy argument ‘ng’ at (1) [-Wunused-dummy-argument] +[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_grid_tools.F90:1800:0: + + subroutine setup_latlon(deglon_start,deglon_stop, deglat_start, deglat_stop, bd ) + +Warning: ‘setup_latlon’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/init_hydro.F90:356:16: + + real p0, gztop, ptop + 1 +Warning: Unused variable ‘gztop’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/init_hydro.F90:356:9: + + real p0, gztop, ptop + 1 +Warning: Unused variable ‘p0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/init_hydro.F90:247:25: + + cappa, ptop, ps, delp, q, nq, area, nwat, & + 1 +Warning: Unused dummy argument ‘cappa’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/init_hydro.F90:112:37: + + integer rainwat, snowwat, graupel ! GFDL Cloud Microphysics + 1 +Warning: Unused variable ‘graupel’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/init_hydro.F90:111:35: + + integer sphum, liq_wat, ice_wat + 1 +Warning: Unused variable ‘ice_wat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/init_hydro.F90:111:26: + + integer sphum, liq_wat, ice_wat + 1 +Warning: Unused variable ‘liq_wat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/init_hydro.F90:85:53: + + dry_mass, adjust_dry_mass, mountain, moist_phys, & + 1 +Warning: Unused dummy argument ‘mountain’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/init_hydro.F90:115:21: + + integer i, j, k, n + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/init_hydro.F90:112:19: + + integer rainwat, snowwat, graupel ! GFDL Cloud Microphysics + 1 +Warning: Unused variable ‘rainwat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/init_hydro.F90:112:28: + + integer rainwat, snowwat, graupel ! GFDL Cloud Microphysics + 1 +Warning: Unused variable ‘snowwat’ declared at (1) [-Wunused-variable] +[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_treat_da_inc.F90:213:59: + + fname = 'INPUT/'//Atm(1)%flagstruct%res_latlon_dynamics + 1 +Warning: CHARACTER expression will be truncated in assignment (128/134) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_treat_da_inc.F90:190:19: + + logical:: found + 1 +Warning: Unused variable ‘found’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_treat_da_inc.F90:159:39: + + subroutine read_da_inc(Atm, fv_domain) + 1 +Warning: Unused dummy argument ‘fv_domain’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_treat_da_inc.F90:183:43: + + integer:: i, j, k, im, jm, km, npz, npt + 1 +Warning: Unused variable ‘npt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_treat_da_inc.F90:163:17: + + integer :: nq + 1 +Warning: Unused variable ‘nq’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_treat_da_inc.F90:169:44: + + real, allocatable:: tp(:,:,:), qp(:,:,:) + 1 +Warning: Unused variable ‘qp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_treat_da_inc.F90:167:38: + + real(kind=4), allocatable:: wk1(:), wk2(:,:), wk3(:,:,:) + 1 +Warning: Unused variable ‘wk1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_treat_da_inc.F90:167:48: + + real(kind=4), allocatable:: wk1(:), wk2(:,:), wk3(:,:,:) + 1 +Warning: Unused variable ‘wk2’ declared at (1) [-Wunused-variable] +[ 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/sw_core.F90:3194:11: + + integer i,j + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/sw_core.F90:3194:13: + + integer i,j + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/sw_core.F90:2387:12: + + real xt, dl, dr, pmp, lac, cfl + 1 +Warning: Unused variable ‘dl’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/sw_core.F90:2387:16: + + real xt, dl, dr, pmp, lac, cfl + 1 +Warning: Unused variable ‘dr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/sw_core.F90:2390:23: + + integer i, j, is1, ie1, js3, je3 + 1 +Warning: Unused variable ‘ie1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/sw_core.F90:2390:18: + + integer i, j, is1, ie1, js3, je3 + 1 +Warning: Unused variable ‘is1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/sw_core.F90:2367:51: + + subroutine ytp_v(is,ie,js,je,isd,ied,jsd,jed, c, u, v, flux, jord, dy, rdy, npx, npy, grid_type, nested, lim_fac, regional) + 1 +Warning: Unused dummy argument ‘u’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/sw_core.F90:2029:8: + + real dl, dr, xt, pmp, lac, cfl + 1 +Warning: Unused variable ‘dl’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/sw_core.F90:2029:12: + + real dl, dr, xt, pmp, lac, cfl + 1 +Warning: Unused variable ‘dr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/sw_core.F90:2034:17: + + integer is2, ie2 + 1 +Warning: Unused variable ‘ie2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/sw_core.F90:2034:12: + + integer is2, ie2 + 1 +Warning: Unused variable ‘is2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/sw_core.F90:2010:53: + + subroutine xtp_u(is,ie,js,je,isd,ied,jsd,jed,c, u, v, flux, iord, dx, rdx, npx, npy, grid_type, nested, lim_fac, regional) + 1 +Warning: Unused dummy argument ‘v’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/sw_core.F90:1920:36: + + subroutine smag_corner(dt, u, v, ua, va, smag_c, bd, npx, npy, gridstruct, ng) + 1 +Warning: Unused dummy argument ‘ua’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/sw_core.F90:1920:40: + + subroutine smag_corner(dt, u, v, ua, va, smag_c, bd, npx, npy, gridstruct, ng) + 1 +Warning: Unused dummy argument ‘va’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/sw_core.F90:589:51: + + real, pointer, dimension(:,:) :: area, area_c, rarea + 1 +Warning: Unused variable ‘area_c’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/sw_core.F90:584:17: + + real :: dt2, dt4, dt5, dt6 + 1 +Warning: Unused variable ‘dt2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/sw_core.F90:526:30: + + zvir, sphum, nq, q, k, km, inline_q, & + 1 +Warning: Unused dummy argument ‘sphum’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/sw_core.F90:586:19: + + real :: u_lon + 1 +Warning: Unused variable ‘u_lon’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/sw_core.F90:526:23: + + zvir, sphum, nq, q, k, km, inline_q, & + 1 +Warning: Unused dummy argument ‘zvir’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/sw_core.F90:126:30: + + integer :: i,j, is2, ie1 + 1 +Warning: Unused variable ‘ie1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/sw_core.F90:126:25: + + integer :: i,j, is2, ie1 + 1 +Warning: Unused variable ‘is2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:308:14: + + nstep = 0.5*IPD_Control%iau_delthrs*3600/dtp + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:310:14: + + kstep = (IPD_Control%fhour-(t1+IPD_Control%iau_delthrs*0.5))*3600./dtp + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:355:46: + + iau_state%hr2=IPD_Control%iaufhrs(t2) + 1 +Warning: Legacy Extension: REAL array index at (1) +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:357:98: + + if (is_master()) print *,'reading next increment file',trim(IPD_Control%iau_inc_files(t2)) + 1 +Warning: Legacy Extension: REAL array index at (1) +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:358:102: + + call read_iau_forcing(IPD_Control,iau_state%inc2,'INPUT/'//trim(IPD_Control%iau_inc_files(t2))) + 1 +Warning: Legacy Extension: REAL array index at (1) +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:162:12: + + idt = IPD_Control%iaufhrs(2:nfiles)-IPD_Control%iaufhrs(1:nfiles-1) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:251:15: + + nstep = 0.5*IPD_Control%iau_delthrs*3600/dtp + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:430:40: + + real(kind=R_GRID), dimension(3):: e1, e2, ex, ey + 1 +Warning: Unused variable ‘e1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:430:44: + + real(kind=R_GRID), dimension(3):: e1, e2, ex, ey + 1 +Warning: Unused variable ‘e2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:430:48: + + real(kind=R_GRID), dimension(3):: e1, e2, ex, ey + 1 +Warning: Unused variable ‘ex’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:430:52: + + real(kind=R_GRID), dimension(3):: e1, e2, ex, ey + 1 +Warning: Unused variable ‘ey’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:432:19: + + logical:: found + 1 +Warning: Unused variable ‘found’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:427:16: + + integer:: i1, i2, j1 + 1 +Warning: Unused variable ‘i1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:427:20: + + integer:: i1, i2, j1 + 1 +Warning: Unused variable ‘i2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:426:21: + + integer:: i, j, k, l, npz + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:429:40: + + real(kind=R_GRID), dimension(2):: p1, p2, p3 + 1 +Warning: Unused variable ‘p1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:429:44: + + real(kind=R_GRID), dimension(2):: p1, p2, p3 + 1 +Warning: Unused variable ‘p2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:429:48: + + real(kind=R_GRID), dimension(2):: p1, p2, p3 + 1 +Warning: Unused variable ‘p3’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:424:47: + + real, dimension(:,:,:), allocatable:: u_inc, v_inc + 1 +Warning: Unused variable ‘u_inc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:424:54: + + real, dimension(:,:,:), allocatable:: u_inc, v_inc + 1 +Warning: Unused variable ‘v_inc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:398:21: + + real(kind_phys) delt, dt,wt + 1 +Warning: Unused variable ‘delt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:398:25: + + real(kind_phys) delt, dt,wt + 1 +Warning: Unused variable ‘dt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:393:37: + + subroutine setiauforcing(IPD_Control,IAU_Data,wt) + 1 +Warning: Unused dummy argument ‘ipd_control’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:292:14: + + integer n,i,j,k,sphum,kstep,nstep + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:292:16: + + integer n,i,j,k,sphum,kstep,nstep + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:292:12: + + integer n,i,j,k,sphum,kstep,nstep + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:124:19: + + logical:: found + 1 +Warning: Unused variable ‘found’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:121:16: + + integer:: i1, i2, j1 + 1 +Warning: Unused variable ‘i1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:121:20: + + integer:: i1, i2, j1 + 1 +Warning: Unused variable ‘i2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:121:24: + + integer:: i1, i2, j1 + 1 +Warning: Unused variable ‘j1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:122:18: + + integer:: jbeg, jend + 1 +Warning: Unused variable ‘jbeg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:122:24: + + integer:: jbeg, jend + 1 +Warning: Unused variable ‘jend’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:116:47: + + real, dimension(:,:,:), allocatable:: u_inc, v_inc + 1 +Warning: Unused variable ‘u_inc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_iau_mod.F90:116:54: + + real, dimension(:,:,:), allocatable:: u_inc, v_inc + 1 +Warning: Unused variable ‘v_inc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/sw_core.F90:3186:0: + + subroutine fill3_4corners(q1, q2, q3, dir, bd, npx, npy, sw_corner, se_corner, ne_corner, nw_corner) + +Warning: ‘fill3_4corners’ defined but not used [-Wunused-function] +[ 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_io.F90:124:24: + + integer ::grid_xtdimid, grid_ytdimid, haloid, pfullid !For writing BCs + 1 +Warning: Unused PRIVATE module variable ‘grid_xtdimid’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_io.F90:125:28: + + integer ::grid_xtstagdimid, grid_ytstagdimid, oneid + 1 +Warning: Unused PRIVATE module variable ‘grid_xtstagdimid’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_io.F90:124:38: + + integer ::grid_xtdimid, grid_ytdimid, haloid, pfullid !For writing BCs + 1 +Warning: Unused PRIVATE module variable ‘grid_ytdimid’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_io.F90:125:46: + + integer ::grid_xtstagdimid, grid_ytstagdimid, oneid + 1 +Warning: Unused PRIVATE module variable ‘grid_ytstagdimid’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_io.F90:124:46: + + integer ::grid_xtdimid, grid_ytdimid, haloid, pfullid !For writing BCs + 1 +Warning: Unused PRIVATE module variable ‘haloid’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_io.F90:125:53: + + integer ::grid_xtstagdimid, grid_ytstagdimid, oneid + 1 +Warning: Unused PRIVATE module variable ‘oneid’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_io.F90:124:55: + + integer ::grid_xtdimid, grid_ytdimid, haloid, pfullid !For writing BCs + 1 +Warning: Unused PRIVATE module variable ‘pfullid’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_io.F90:977:16: + + integer :: n + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_io.F90:978:31: + + character(len=120) :: tname, fname_ne, fname_sw + 1 +Warning: Unused variable ‘tname’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_io.F90:447:46: + + subroutine fv_io_register_nudge_restart(Atm) + 1 +Warning: Unused dummy argument ‘atm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_io.F90:449:30: + + character(len=64) :: fname + 1 +Warning: Unused variable ‘fname’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_io.F90:450:35: + + integer :: id_restart + 1 +Warning: Unused variable ‘id_restart’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_io.F90:283:57: + + integer :: isc, iec, jsc, jec, n, nt, nk, ntracers, ntprog, ntdiag + 1 +Warning: Unused variable ‘nk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_io.F90:149:36: + + integer :: isc, iec, jsc, jec, n, nt, nk, ntracers + 1 +Warning: Unused variable ‘iec’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_io.F90:149:31: + + integer :: isc, iec, jsc, jec, n, nt, nk, ntracers + 1 +Warning: Unused variable ‘isc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_io.F90:149:46: + + integer :: isc, iec, jsc, jec, n, nt, nk, ntracers + 1 +Warning: Unused variable ‘jec’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_io.F90:149:41: + + integer :: isc, iec, jsc, jec, n, nt, nk, ntracers + 1 +Warning: Unused variable ‘jsc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_io.F90:151:30: + + integer :: ks, ntiles + 1 +Warning: Unused variable ‘ks’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_io.F90:149:57: + + integer :: isc, iec, jsc, jec, n, nt, nk, ntracers + 1 +Warning: Unused variable ‘nk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_io.F90:149:53: + + integer :: isc, iec, jsc, jec, n, nt, nk, ntracers + 1 +Warning: Unused variable ‘nt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_io.F90:149:67: + + integer :: isc, iec, jsc, jec, n, nt, nk, ntracers + 1 +Warning: Unused variable ‘ntracers’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_io.F90:152:32: + + real :: ptop + 1 +Warning: Unused variable ‘ptop’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_io.F90:154:51: + + character(len=128) :: tracer_longname, tracer_units + 1 +Warning: Unused variable ‘tracer_longname’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_io.F90:147:46: + + character(len=64) :: fname, tracer_name + 1 +Warning: Unused variable ‘tracer_name’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_io.F90:154:65: + + character(len=128) :: tracer_longname, tracer_units + 1 +Warning: Unused variable ‘tracer_units’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:5212:36: + + integer :: k,kmin,n,nloop,i,orec + 1 +Warning: Unused variable ‘orec’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:5213:44: + + real, dimension(nk) :: pi,th,thv,z,pt,pb,pc,pn,ptv + 1 +Warning: Unused variable ‘pb’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:5213:47: + + real, dimension(nk) :: pi,th,thv,z,pt,pb,pc,pn,ptv + 1 +Warning: Unused variable ‘pc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:5213:50: + + real, dimension(nk) :: pi,th,thv,z,pt,pb,pc,pn,ptv + 1 +Warning: Unused variable ‘pn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:5213:41: + + real, dimension(nk) :: pi,th,thv,z,pt,pb,pc,pn,ptv + 1 +Warning: Unused variable ‘pt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:5213:54: + + real, dimension(nk) :: pi,th,thv,z,pt,pb,pc,pn,ptv + 1 +Warning: Unused variable ‘ptv’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:5030:63: + + w, vort, delz, q, hydrostatic, pt, peln, phis, grav, z_bot, z_top) + 1 +Warning: Unused dummy argument ‘phis’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4992:25: + + integer i, j, k,klevel + 1 +Warning: Unused variable ‘klevel’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4977:40: + + pt, peln, phis, grav, vort, maxvort, z_bot, z_top) + 1 +Warning: Unused dummy argument ‘phis’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4965:18: + + integer i, j, k + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4887:43: + + real(kind=R_GRID):: factorb_s, factorb_g + 1 +Warning: Unused variable ‘factorb_g’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4887:32: + + real(kind=R_GRID):: factorb_s, factorb_g + 1 +Warning: Unused variable ‘factorb_s’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4888:47: + + real(kind=R_GRID):: temp_c, pres, sonv, gonv, ronv, z_e + 1 +Warning: Unused variable ‘gonv’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4788:51: + + hydrostatic, zvir, in0r, in0s, in0g, iliqskin) + 1 +Warning: Unused dummy argument ‘iliqskin’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4788:41: + + hydrostatic, zvir, in0r, in0s, in0g, iliqskin) + 1 +Warning: Unused dummy argument ‘in0g’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4788:29: + + hydrostatic, zvir, in0r, in0s, in0g, iliqskin) + 1 +Warning: Unused dummy argument ‘in0r’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4788:35: + + hydrostatic, zvir, in0r, in0s, in0g, iliqskin) + 1 +Warning: Unused dummy argument ‘in0s’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4888:35: + + real(kind=R_GRID):: temp_c, pres, sonv, gonv, ronv, z_e + 1 +Warning: Unused variable ‘pres’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4886:36: + + real(kind=R_GRID):: qr1, qs1, qg1, t1, t2, t3, rwat, denfac, vtr, vtg, vts + 1 +Warning: Unused variable ‘qg1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4886:26: + + real(kind=R_GRID):: qr1, qs1, qg1, t1, t2, t3, rwat, denfac, vtr, vtg, vts + 1 +Warning: Unused variable ‘qr1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4886:31: + + real(kind=R_GRID):: qr1, qs1, qg1, t1, t2, t3, rwat, denfac, vtr, vtg, vts + 1 +Warning: Unused variable ‘qs1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4888:53: + + real(kind=R_GRID):: temp_c, pres, sonv, gonv, ronv, z_e + 1 +Warning: Unused variable ‘ronv’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4886:54: + + real(kind=R_GRID):: qr1, qs1, qg1, t1, t2, t3, rwat, denfac, vtr, vtg, vts + 1 +Warning: Unused variable ‘rwat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4888:41: + + real(kind=R_GRID):: temp_c, pres, sonv, gonv, ronv, z_e + 1 +Warning: Unused variable ‘sonv’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4888:29: + + real(kind=R_GRID):: temp_c, pres, sonv, gonv, ronv, z_e + 1 +Warning: Unused variable ‘temp_c’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4617:23: + + integer :: i,j,k, n + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4193:21: + + integer i, j, k, n + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4176:74: + + w, vort, delz, q, hydrostatic, pt, peln, phis, grav, z_bot, z_top) + 1 +Warning: Unused dummy argument ‘phis’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4109:30: + + logical :: has_sfc, has_6km + 1 +Warning: Unused variable ‘has_6km’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4109:21: + + logical :: has_sfc, has_6km + 1 +Warning: Unused variable ‘has_sfc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4107:21: + + integer i, j, k, n + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4092:71: + + ua, va, delz, q, hydrostatic, pt, peln, phis, grav) + 1 +Warning: Unused dummy argument ‘phis’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4032:29: + + integer i, j, k, k0, k1, n + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:4010:74: + + ua, va, delz, q, hydrostatic, pt, peln, phis, grav, z_bot, z_top) + 1 +Warning: Unused dummy argument ‘phis’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:3920:74: + + ua, va, delz, q, hydrostatic, pt, peln, phis, grav, z_bot, z_top) + 1 +Warning: Unused dummy argument ‘phis’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:3305:22: + + real qtot(nwat), qwat + 1 +Warning: Unused variable ‘qwat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:1110:30: + + real :: a1d(Atm(1)%npz) + 1 +Warning: Unused variable ‘a1d’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:1122:17: + + integer :: Cl, Cl2 + 1 +Warning: Unused variable ‘cl’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:1122:22: + + integer :: Cl, Cl2 + 1 +Warning: Unused variable ‘cl2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:1121:27: + + real :: tmp2, pvsum, e2, einf, qm, mm, maxdbz, allmax, rgrav + 1 +Warning: Unused variable ‘e2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:1121:33: + + real :: tmp2, pvsum, e2, einf, qm, mm, maxdbz, allmax, rgrav + 1 +Warning: Unused variable ‘einf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:1121:49: + + real :: tmp2, pvsum, e2, einf, qm, mm, maxdbz, allmax, rgrav + 1 +Warning: Unused variable ‘maxdbz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:1121:41: + + real :: tmp2, pvsum, e2, einf, qm, mm, maxdbz, allmax, rgrav + 1 +Warning: Unused variable ‘mm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:1121:23: + + real :: tmp2, pvsum, e2, einf, qm, mm, maxdbz, allmax, rgrav + 1 +Warning: Unused variable ‘pvsum’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:1121:37: + + real :: tmp2, pvsum, e2, einf, qm, mm, maxdbz, allmax, rgrav + 1 +Warning: Unused variable ‘qm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:1101:78: + + real, allocatable :: a2(:,:),a3(:,:,:), wk(:,:,:), wz(:,:,:), ucoor(:,:,:), vcoor(:,:,:) + 1 +Warning: Unused variable ‘ucoor’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:1104:85: + + real, allocatable :: u2(:,:), v2(:,:), x850(:,:), var1(:,:), var2(:,:), var3(:,:) + 1 +Warning: Unused variable ‘var3’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:1101:92: + + real, allocatable :: a2(:,:),a3(:,:,:), wk(:,:,:), wz(:,:,:), ucoor(:,:,:), vcoor(:,:,:) + 1 +Warning: Unused variable ‘vcoor’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:207:59: + + real, allocatable :: grid_xt(:), grid_yt(:), grid_xe(:), grid_ye(:), grid_xn(:), grid_yn(:) + 1 +Warning: Unused variable ‘grid_xe’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:207:83: + + real, allocatable :: grid_xt(:), grid_yt(:), grid_xe(:), grid_ye(:), grid_xn(:), grid_yn(:) + 1 +Warning: Unused variable ‘grid_xn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:207:71: + + real, allocatable :: grid_xt(:), grid_yt(:), grid_xe(:), grid_ye(:), grid_xn(:), grid_yn(:) + 1 +Warning: Unused variable ‘grid_ye’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:207:95: + + real, allocatable :: grid_xt(:), grid_yt(:), grid_xe(:), grid_ye(:), grid_xn(:), grid_yn(:) + 1 +Warning: Unused variable ‘grid_yn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:218:67: + + integer :: i, j, k, n, ntileMe, id_xt, id_yt, id_x, id_y, id_xe, id_ye, id_xn, id_yn + 1 +Warning: Unused variable ‘id_xe’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:218:81: + + integer :: i, j, k, n, ntileMe, id_xt, id_yt, id_x, id_y, id_xe, id_ye, id_xn, id_yn + 1 +Warning: Unused variable ‘id_xn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:218:74: + + integer :: i, j, k, n, ntileMe, id_xt, id_yt, id_x, id_y, id_xe, id_ye, id_xn, id_yn + 1 +Warning: Unused variable ‘id_ye’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:218:88: + + integer :: i, j, k, n, ntileMe, id_xt, id_yt, id_x, id_y, id_xe, id_ye, id_xn, id_yn + 1 +Warning: Unused variable ‘id_yn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:224:34: + + integer :: ntprog + 1 +Warning: Unused variable ‘ntprog’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:3919:0: + + subroutine helicity_relative(is, ie, js, je, ng, km, zvir, sphum, srh, & + +Warning: ‘helicity_relative’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:5380:0: + + th2 = avgth + +Warning: ‘avgth’ may be used uninitialized in this function [-Wmaybe-uninitialized] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90:5381:0: + + qv2 = avgqv + +Warning: ‘avgqv’ may be used uninitialized in this function [-Wmaybe-uninitialized] +[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/nh_utils.F90:1898:46: + + subroutine nest_halo_nh(ptop, grav, kappa, cp, delp, delz, pt, phis, & + 1 +Warning: Unused dummy argument ‘cp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/nh_utils.F90:1909:60: + + npx, npy, npz, nested, pkc_pertn, computepk3, fullhalo, bd, regional) + 1 +Warning: Unused dummy argument ‘fullhalo’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/nh_utils.F90:1544:51: + + subroutine SIM_solver(dt, is, ie, km, rgas, gama, gm2, cp2, kappa, & + 1 +Warning: Unused dummy argument ‘gama’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/nh_utils.F90:1373:52: + + subroutine SIM1_solver(dt, is, ie, km, rgas, gama, gm2, cp2, kappa, & + 1 +Warning: Unused dummy argument ‘gama’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/nh_utils.F90:475:61: + + isd, ied, jsd, jed, akap, cappa, cp, & + 1 +Warning: Unused dummy argument ‘cp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/nh_utils.F90:332:42: + + akap, cappa, cp, & + 1 +Warning: Unused dummy argument ‘cp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/nh_utils.F90:215:62: + + dp0, zs, zh, crx, cry, xfx, yfx, delz, ws, rdt, gridstruct, bd, lim_fac, regional) + 1 +Warning: Dummy argument ‘delz’ at (1) was declared INTENT(OUT) but was not set [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/nh_utils.F90:474:0: + + subroutine Riem_Solver3test(ms, dt, is, ie, js, je, km, ng, & + +Warning: ‘riem_solver3test’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/nh_utils.F90:679:0: + + subroutine imp_diff_w(j, is, ie, js, je, ng, km, cd, delz, ws, w, w3) + +Warning: ‘imp_diff_w’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/nh_utils.F90:1740:0: + + subroutine edge_scalar(q1, qe, i1, i2, km, id) + +Warning: ‘edge_scalar’ defined but not used [-Wunused-function] +[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/nh_core.F90:66:61: + + isd, ied, jsd, jed, akap, cappa, cp, & + 1 +Warning: Unused dummy argument ‘cp’ at (1) [-Wunused-dummy-argument] +[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o +[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o +[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_regional_bc.F90:172:34: + + real, parameter:: real_snan=x'FFF7FFFFFFFFFFFF' + 1 +Warning: BOZ literal at (1) is bitwise transferred non-integer symbol ‘real_snan’ [-Wsurprising] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_regional_bc.F90:174:46: + + real(kind=R_GRID), parameter:: dbl_snan=x'FFF7FFFFFFFFFFFF' + 1 +Warning: BOZ literal at (1) is bitwise transferred non-integer symbol ‘dbl_snan’ [-Wsurprising] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:3149:3: + + 400 continue + 1 +Warning: Label 400 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:2917:3: + + 400 continue + 1 +Warning: Label 400 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:3291:15: + + x_obs(:,:) = - 100.*pi + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:3292:15: + + y_obs(:,:) = - 100.*pi + 1 +Warning: Change of value in conversion from ‘REAL(8)’ to ‘REAL(4)’ at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:3339:32: + + time_tc(it,nstorms) = cald + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:3342:33: + + wind_obs(it,nstorms) = mps ! m/s + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:3343:33: + + mslp_obs(it,nstorms) = 100.*slp + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:3344:33: + + y_obs(it,nstorms) = lat_deg * deg2rad + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:3345:33: + + x_obs(it,nstorms) = lon_deg * deg2rad + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:3369:35: + + time_tc(nobs,nstorms) = cald + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:3373:35: + + mslp_obs(nobs,nstorms) = 100. * real(islp) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:3374:35: + + y_obs(nobs,nstorms) = lat_deg * deg2rad + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:3378:40: + + x_obs(nobs,nstorms) = (360.+lon_deg) * deg2rad + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:3380:40: + + x_obs(nobs,nstorms) = (360.-lon_deg) * deg2rad + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:3383:35: + + x_obs(nobs,nstorms) = lon_deg * deg2rad + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6260:1: + + if (bubble_do) then + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6261:1: + + r0 = 100.*sqrt(dx_const**2 + dy_const**2) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6262:1: + + icenter = npx/2 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6263:1: + + jcenter = npy/2 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6265:1: + + do j=js,je + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6266:1: + + do i=is,ie + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6267:1: + + dist = (i-icenter)*dx_const*(i-icenter)*dx_const & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6268:1: + + +(j-jcenter)*dy_const*(j-jcenter)*dy_const + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6269:1: + + dist = min(r0, sqrt(dist)) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6270:1: + + do k=1,npz + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6271:1: + + prf = ak(k) + ps(i,j)*bk(k) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6272:1: + + if ( prf > 100.E2 ) then + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6273:1: + + pt(i,j,k) = pt(i,j,k) + 0.01*(1. - (dist/r0)) * prf/ps(i,j) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6274:1: + + endif + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6275:1: + + enddo + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6276:1: + + enddo + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6277:1: + + enddo + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6278:1: + + endif + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:2361:3: + + 123 continue + 1 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:2413:40: + + if ( r_vor < 1250.E3 ) goto 123 + 2 +Warning: Legacy Extension: Label at (1) is not in the same block as the GOTO statement at (2) +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:2062:23: + + u(i,j,k) = qn1(i,k) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:2076:23: + + v(i,j,k) = qn1(i,k) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:1986:25: + + q(i,j,k) = qn1(i,k) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:2000:20: + + t(i,j,k) = qn1(i,k) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:1914:24: + + gz3(i,j,km+1) = gz0(i,j) ! Data Surface geopotential + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:1919:24: + + gz3(i,j,k) = gz3(i,j,k+1) + rdgas*tv(i,j,k)*(pn0(i,k+1)-pn0(i,k)) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:1566:42: + + wk1(i,j) = tmean + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:1624:15: + + wk2 = wk2 * grav ! convert unit from geopotential meter (m) to geopotential height (m2/s2) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:1658:23: + + u(i,j,k) = s2c(i,j,1)*wk3(i1,j1 ,k) + s2c(i,j,2)*wk3(i2,j1 ,k) + & + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:1672:23: + + v(i,j,k) = s2c(i,j,1)*wk3(i1,j1 ,k) + s2c(i,j,2)*wk3(i2,j1 ,k) + & + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:1689:23: + + q(i,j,k) = s2c(i,j,1)*wk3(i1,j1 ,k) + s2c(i,j,2)*wk3(i2,j1 ,k) + & + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:1704:23: + + t(i,j,k) = s2c(i,j,1)*wk3(i1,j1 ,k) + s2c(i,j,2)*wk3(i2,j1 ,k) + & + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:1717:23: + + t(i,j,k) = t(i,j,k)*(1.+zvir*q(i,j,k)) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:1192:18: + + wt(:,:,:) = alpha*t_dat(:,:,:,1) + beta*t_dat(:,:,:,2) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6628:1: + + if (bubble_do) then + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6629:1: + + r0 = 10.e3 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6630:1: + + zc = 1.4e3 ! center of bubble from surface + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6631:1: + + icenter = (npx-1)/2 + 1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6632:1: + + jcenter = (npy-1)/2 + 1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6633:1: + + do k=1, npz + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6634:1: + + zm = 0.5*(ze1(k)+ze1(k+1)) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6635:1: + + ptmp = ( (zm-zc)/zc ) **2 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6636:1: + + if ( ptmp < 1. ) then + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6637:1: + + do j=js,je + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6638:1: + + do i=is,ie + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6639:1: + + dist = ptmp+((i-icenter)*dx_const/r0)**2+((j-jcenter)*dy_const/r0)**2 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6640:1: + + if ( dist < 1. ) then + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6641:1: + + pt(i,j,k) = pt(i,j,k) + pturb*(1.-sqrt(dist)) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6642:1: + + endif + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6643:1: + + enddo + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6644:1: + + enddo + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6645:1: + + endif + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6646:1: + + enddo + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:6647:1: + + endif + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:230:17: + + integer :: nf_ht = 1 + 1 +Warning: Unused PRIVATE module variable ‘nf_ht’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:251:16: + + real :: pt_lim = 0.2 + 1 +Warning: Unused PRIVATE module variable ‘pt_lim’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:202:23: + + logical :: strong_mask = .false. + 1 +Warning: Unused PRIVATE module variable ‘strong_mask’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:196:22: + + logical :: use_pt_inc = .false. + 1 +Warning: Unused PRIVATE module variable ‘use_pt_inc’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:9110:1: + + call mp_stop + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:9111:1: + + stop + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:3413:15: + + integer n, m, ds, nday + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:3414:15: + + real tsec + 1 +Warning: Unused variable ‘tsec’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:3284:38: + + integer:: it, i1, i2, p_ring, d_ring + 1 +Warning: Unused variable ‘d_ring’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:3284:18: + + integer:: it, i1, i2, p_ring, d_ring + 1 +Warning: Unused variable ‘i1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:3284:22: + + integer:: it, i1, i2, p_ring, d_ring + 1 +Warning: Unused variable ‘i2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:3283:18: + + integer:: mmddhh, yr, year, month, day, hour, MPH, islp + 1 +Warning: Unused variable ‘mmddhh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:3284:30: + + integer:: it, i1, i2, p_ring, d_ring + 1 +Warning: Unused variable ‘p_ring’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:3185:80: + + subroutine get_slp_obs(time, nobs, lon_obs, lat_obs, w10, mslp, slp_out, r_out, time_obs, & + 1 +Warning: Unused dummy argument ‘r_out’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:3185:73: + + subroutine get_slp_obs(time, nobs, lon_obs, lat_obs, w10, mslp, slp_out, r_out, time_obs, & + 1 +Warning: Unused dummy argument ‘slp_out’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:2927:59: + + subroutine breed_srf_winds(time, dt, npz, u_obs, v_obs, ak, bk, ps, phis, delp, ua, va, u_dt, v_dt, pt, q, nwat, zvir, gridstruct) + 1 +Warning: Unused dummy argument ‘ak’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:2927:63: + + subroutine breed_srf_winds(time, dt, npz, u_obs, v_obs, ak, bk, ps, phis, delp, ua, va, u_dt, v_dt, pt, q, nwat, zvir, gridstruct) + 1 +Warning: Unused dummy argument ‘bk’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:2953:28: + + integer n, i, j, k, iq + 1 +Warning: Unused variable ‘iq’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:2927:106: + + subroutine breed_srf_winds(time, dt, npz, u_obs, v_obs, ak, bk, ps, phis, delp, ua, va, u_dt, v_dt, pt, q, nwat, zvir, gridstruct) + 1 +Warning: Unused dummy argument ‘q’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:2927:118: + + subroutine breed_srf_winds(time, dt, npz, u_obs, v_obs, ak, bk, ps, phis, delp, ua, va, u_dt, v_dt, pt, q, nwat, zvir, gridstruct) + 1 +Warning: Unused dummy argument ‘zvir’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:4717:4: + + 202 format(' ',A,e10.4,' ',e10.4,' ',i4.4,'x',i4.4,'x',i4.4,'x',i4.4,' ',e10.4) + 1 +Warning: Label 202 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:339:4: + + 200 format(i4.4,'x',i4.4,'x',i4.4,' ',e21.14,' ',e21.14,' ',e21.14,' ',e21.14,' ',e21.14,' ',e21.14,' ',e21.14,' ',e21.14) + 1 +Warning: Label 200 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:2648:43: + + subroutine breed_srf_w10(time, dt, npz, ak, bk, ps, phis, slp, delp, u, v, gridstruct) + 1 +Warning: Unused dummy argument ‘ak’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:2648:47: + + subroutine breed_srf_w10(time, dt, npz, ak, bk, ps, phis, slp, delp, u, v, gridstruct) + 1 +Warning: Unused dummy argument ‘bk’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:2648:51: + + subroutine breed_srf_w10(time, dt, npz, ak, bk, ps, phis, slp, delp, u, v, gridstruct) + 1 +Warning: Unused dummy argument ‘ps’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:2156:67: + + zvir, gridstruct, ks, domain_local, bd, hydrostatic) + 1 +Warning: Unused dummy argument ‘bd’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:2188:50: + + real:: relx0, relx, f1, pbreed, pbtop, delp0, dp0 + 1 +Warning: Unused variable ‘delp0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:2189:18: + + real:: ratio, p_count, p_sum, a_sum, mass_sink, delps + 1 +Warning: Unused variable ‘ratio’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:2156:33: + + zvir, gridstruct, ks, domain_local, bd, hydrostatic) + 1 +Warning: Unused dummy argument ‘zvir’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:4939:21: + + arr_r4(1) = (tmass-tmass_orig)/tmass_orig + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:4940:21: + + arr_r4(2) = (tener-tener_orig)/tener_orig + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:4941:21: + + arr_r4(3) = (tvort-tvort_orig)/tvort_orig + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:4942:21: + + arr_r4(4) = tKE + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:4943:40: + + if (test_case==12) arr_r4(4) = L2_norm + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:4947:17: + + myRec = myDay*86400.0/dtout + 1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:2009:32: + + subroutine remap_uv(npz, ak, bk, ps, delp, u, v, kmd, ps0, u0, v0, ptop) + 1 +Warning: Unused dummy argument ‘bk’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_regional_bc.F90:935:5: + + 11110 format(' i_start_data=',i5,' j_start_data=',i5) + 1 +Warning: Label 11110 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:1929:34: + + subroutine remap_tq( npz, ak, bk, ps, delp, t, q, & + 1 +Warning: Unused dummy argument ‘bk’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:1930:44: + + kmd, ps0, ta, qa, zvir, ptop) + 1 +Warning: Unused dummy argument ‘zvir’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:1894:32: + + subroutine get_int_hght(npz, ak, bk, ps, delp, ps0, tv) + 1 +Warning: Unused dummy argument ‘ak’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:1894:36: + + subroutine get_int_hght(npz, ak, bk, ps, delp, ps0, tv) + 1 +Warning: Unused dummy argument ‘bk’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:1894:46: + + subroutine get_int_hght(npz, ak, bk, ps, delp, ps0, tv) + 1 +Warning: Unused dummy argument ‘delp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:1894:40: + + subroutine get_int_hght(npz, ak, bk, ps, delp, ps0, tv) + 1 +Warning: Unused dummy argument ‘ps’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:1485:74: + + subroutine get_ncep_analysis ( ps, u, v, t, q, zvir, ts, nfile, fname, bd ) + 1 +Warning: Unused dummy argument ‘bd’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:1498:15: + + logical found + 1 +Warning: Unused variable ‘found’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:1485:63: + + subroutine get_ncep_analysis ( ps, u, v, t, q, zvir, ts, nfile, fname, bd ) + 1 +Warning: Unused dummy argument ‘nfile’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:1256:69: + + subroutine fv_nwp_nudge_init(time, axes, npz, zvir, ak, bk, ts, phis, gridstruct, ks, npx, neststruct, bd) + 1 +Warning: Unused dummy argument ‘phis’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:1272:18: + + integer tsize(4) + 1 +Warning: Unused variable ‘tsize’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:814:37: + + real:: pst, dbk, pt0, rdt, bias + 1 +Warning: Unused variable ‘bias’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:815:25: + + integer i, j, k, iq + 1 +Warning: Unused variable ‘iq’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:813:40: + + real, dimension(is:ie,npz+1):: pe2, peln + 1 +Warning: Unused variable ‘pe2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:813:46: + + real, dimension(is:ie,npz+1):: pe2, peln + 1 +Warning: Unused variable ‘peln’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:795:92: + + subroutine ps_nudging(dt, factor, npz, ak, bk, ps_obs, mask, tm, ps, phis, delp, ua, va, pt, nwat, q, bd, npx, npy, gridstruct, domain) + 1 +Warning: Unused dummy argument ‘pt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:795:101: + + subroutine ps_nudging(dt, factor, npz, ak, bk, ps_obs, mask, tm, ps, phis, delp, ua, va, pt, nwat, q, bd, npx, npy, gridstruct, domain) + 1 +Warning: Unused dummy argument ‘q’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:795:84: + + subroutine ps_nudging(dt, factor, npz, ak, bk, ps_obs, mask, tm, ps, phis, delp, ua, va, pt, nwat, q, bd, npx, npy, gridstruct, domain) + 1 +Warning: Unused dummy argument ‘ua’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:795:88: + + subroutine ps_nudging(dt, factor, npz, ak, bk, ps_obs, mask, tm, ps, phis, delp, ua, va, pt, nwat, q, bd, npx, npy, gridstruct, domain) + 1 +Warning: Unused dummy argument ‘va’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:348:69: + + real :: rdt, press(npz), profile(npz), prof_t(npz), prof_q(npz), du, dv + 1 +Warning: Unused variable ‘du’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:348:73: + + real :: rdt, press(npz), profile(npz), prof_t(npz), prof_q(npz), du, dv + 1 +Warning: Unused variable ‘dv’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:346:30: + + integer :: i,j,k, iq, kht, n + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_nudge.F90:349:14: + + logical used + 1 +Warning: Unused variable ‘used’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:182:18: + + real :: lat0 = pi/2.0 !< pi/4.8 + 1 +Warning: Unused PRIVATE module variable ‘lat0’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/test_cases.F90:183:18: + + real :: lon0 = 0.0 ! ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:17:54 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_NEMS_UTILS.tmp.o module_NEMS_UTILS.o -'module_NEMS_UTILS.tmp.o' -> 'module_NEMS_UTILS.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:17:54 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR_methods.tmp.o module_MEDIATOR_methods.o -'module_MEDIATOR_methods.tmp.o' -> 'module_MEDIATOR_methods.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:17:54 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:17:54 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_MEDIATOR_SpaceWeather.tmp.o module_MEDIATOR_SpaceWeather.o -'module_MEDIATOR_SpaceWeather.tmp.o' -> 'module_MEDIATOR_SpaceWeather.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:17:54 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_EARTH_INTERNAL_STATE.tmp.o module_EARTH_INTERNAL_STATE.o -'module_EARTH_INTERNAL_STATE.tmp.o' -> 'module_EARTH_INTERNAL_STATE.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:17:54 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_EARTH_GRID_COMP.tmp.o module_EARTH_GRID_COMP.o -'module_EARTH_GRID_COMP.tmp.o' -> 'module_EARTH_GRID_COMP.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:17:54 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_NEMS_INTERNAL_STATE.tmp.o module_NEMS_INTERNAL_STATE.o -'module_NEMS_INTERNAL_STATE.tmp.o' -> 'module_NEMS_INTERNAL_STATE.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:17:54 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_NEMS_GRID_COMP.tmp.o module_NEMS_GRID_COMP.o -'module_NEMS_GRID_COMP.tmp.o' -> 'module_NEMS_GRID_COMP.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:17:54 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v module_NEMS_Rusage.tmp.o module_NEMS_Rusage.o -'module_NEMS_Rusage.tmp.o' -> 'module_NEMS_Rusage.o' -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -E -cpp -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 19:17:54 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=gfortran -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//include -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace -fdefault-real-8 -fdefault-double-8 -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -fopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 -f951: Warning: Nonexistent include directory ‘/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/fms’ [-Wmissing-include-dirs] -f951: Warning: Nonexistent include directory ‘-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/include’ [-Wmissing-include-dirs] -mv -v MAIN_NEMS.tmp.o MAIN_NEMS.o -'MAIN_NEMS.tmp.o' -> 'MAIN_NEMS.o' -echo libgocart is -libgocart is -echo extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=gfortran -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libccppdriver.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/libstochastic_physics.a -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -L/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/gnu-8.3.0/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/gnu-8.3.0/mpt-2.19/lib -lesmf -lmpi++ -lrt -lstdc++ -ldl -lnetcdff -lnetcdf -fopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/gnu/8.3.0//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/gnu-8.3.0/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/fv3_9.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/tests/fv3_9.exe + #endif SW_DYNAMICS + +Warning: extra tokens at end of #endif directive +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/dyn_core.F90:1306:0: + + #endif SW_DYNAMICS + +Warning: extra tokens at end of #endif directive +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/dyn_core.F90:152:17: + + real :: d3_damp + 1 +Warning: Unused PRIVATE module variable ‘d3_damp’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/dyn_core.F90:2549:28: + + subroutine Ray_fast(dt, npx, npy, npz, pfull, tau, u, v, w, & + 1 +Warning: Unused dummy argument ‘npx’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/dyn_core.F90:2549:33: + + subroutine Ray_fast(dt, npx, npy, npz, pfull, tau, u, v, w, & + 1 +Warning: Unused dummy argument ‘npy’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/dyn_core.F90:2432:45: + + real :: q2(bd%isd:bd%ied,bd%jsd:bd%jed) + 1 +Warning: Unused variable ‘q2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/dyn_core.F90:2069:90: + + subroutine grad1_p_update(divg2, u, v, pk, gz, dt, ng, gridstruct, bd, npx, npy, npz, ptop, beta, a2b_ord) + 1 +Warning: Unused dummy argument ‘ptop’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/dyn_core.F90:264:42: + + real fz(bd%is: bd%ie+1,bd%js: bd%je+1) + 1 +Warning: Unused variable ‘fz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/dyn_core.F90:255:27: + + real:: p1d(bd%is:bd%ie) + 1 +Warning: Unused variable ‘p1d’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/dyn_core.F90:260:27: + + real sbuffer(npx+2,npz) + 1 +Warning: Unused variable ‘sbuffer’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/dyn_core.F90:179:69: + + init_step, i_pack, end_step, diss_est,time_total) + 1 +Warning: Unused dummy argument ‘time_total’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/dyn_core.F90:257:27: + + real wbuffer(npy+2,npz) + 1 +Warning: Unused variable ‘wbuffer’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90:847:34: + + buffer_dyn(i,j,kb) = work(i,j,k) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90:479:32: + + windvect(1,i,j,k) = Atm(n)%ua(i,j,k)*cos(lon(i,j)) - Atm(n)%va(i,j,k)*sin(lat(i,j))*sin(lon(i,j)) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90:480:32: + + windvect(2,i,j,k) = Atm(n)%ua(i,j,k)*sin(lon(i,j)) + Atm(n)%va(i,j,k)*sin(lat(i,j))*cos(lon(i,j)) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90:481:65: + + windvect(3,i,j,k) = Atm(n)%va(i,j,k)*cos(lat(i,j)) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90:561:24: + + psurf(i,j) = ptop + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90:563:27: + + psurf(i,j) = psurf(i,j) + wk(i,j,k) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90:95:15: + + logical master + 1 +Warning: Unused PRIVATE module variable ‘master’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90:122:33: + + logical :: module_is_initialized=.false. + 1 +Warning: Unused PRIVATE module variable ‘module_is_initialized’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90:1485:14: + + integer i,j,in_num, out_num + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90:1485:30: + + integer i,j,in_num, out_num + 1 +Warning: Unused variable ‘out_num’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90:1349:71: + + kstt,kend,dyn_bundle,output_file, range, l3Dvector, rcd) + 1 +Warning: Unused dummy argument ‘range’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90:888:23: + + character(2) axis_id + 1 +Warning: Unused variable ‘axis_id’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90:879:50: + + integer num_attributes, num_field_dyn, axis_typ + 1 +Warning: Unused variable ‘axis_typ’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90:882:22: + + integer currdate(6), idx1 + 1 +Warning: Unused variable ‘currdate’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90:890:55: + + type(ESMF_Field) :: field + 1 +Warning: Unused variable ‘field’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90:877:15: + + integer i, j, k, n + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90:877:18: + + integer i, j, k, n + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90:877:21: + + integer i, j, k, n + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90:740:41: + + integer :: i, j, k, n, ngc, nq, itrac + 1 +Warning: Unused variable ‘itrac’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90:740:22: + + integer :: i, j, k, n, ngc, nq, itrac + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_tracer2d.F90:83:77: + + real, allocatable, dimension(:,:,:) :: nest_fx_west_accum, nest_fx_east_accum, nest_fx_south_accum, nest_fx_north_accum + 1 +Warning: Unused PRIVATE module variable ‘nest_fx_east_accum’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_tracer2d.F90:83:119: + + real, allocatable, dimension(:,:,:) :: nest_fx_west_accum, nest_fx_east_accum, nest_fx_south_accum, nest_fx_north_accum + 1 +Warning: Unused PRIVATE module variable ‘nest_fx_north_accum’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_tracer2d.F90:83:98: + + real, allocatable, dimension(:,:,:) :: nest_fx_west_accum, nest_fx_east_accum, nest_fx_south_accum, nest_fx_north_accum + 1 +Warning: Unused PRIVATE module variable ‘nest_fx_south_accum’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_tracer2d.F90:83:57: + + real, allocatable, dimension(:,:,:) :: nest_fx_west_accum, nest_fx_east_accum, nest_fx_south_accum, nest_fx_north_accum + 1 +Warning: Unused PRIVATE module variable ‘nest_fx_west_accum’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_tracer2d.F90:598:36: + + integer :: nsplt, nsplt_parent, msg_split_steps = 1 + 1 +Warning: Unused variable ‘nsplt_parent’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_tracer2d.F90:318:43: + + nq, hord, q_split, dt, id_divg, q_pack, nord_tr, trdm, lim_fac, regional) + 1 +Warning: Unused dummy argument ‘dt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_tracer2d.F90:318:52: + + nq, hord, q_split, dt, id_divg, q_pack, nord_tr, trdm, lim_fac, regional) + 1 +Warning: Unused dummy argument ‘id_divg’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_tracer2d.F90:351:23: + + real :: frac, rdt + 1 +Warning: Unused variable ‘rdt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_tracer2d.F90:93:46: + + nq, hord, q_split, dt, id_divg, q_pack, nord_tr, trdm, lim_fac, regional) + 1 +Warning: Unused dummy argument ‘dt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_tracer2d.F90:93:55: + + nq, hord, q_split, dt, id_divg, q_pack, nord_tr, trdm, lim_fac, regional) + 1 +Warning: Unused dummy argument ‘id_divg’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_tracer2d.F90:93:42: + + nq, hord, q_split, dt, id_divg, q_pack, nord_tr, trdm, lim_fac, regional) + 1 +Warning: Unused dummy argument ‘q_split’ at (1) [-Wunused-dummy-argument] +[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_update_phys.F90:814:123: + + subroutine update_dwinds_phys(is, ie, js, je, isd, ied, jsd, jed, dt, u_dt, v_dt, u, v, gridstruct, npx, npy, npz, domain) + 1 +Warning: Unused dummy argument ‘domain’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_update_phys.F90:834:18: + + real dt5, gratio + 1 +Warning: Unused variable ‘gratio’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_update_phys.F90:835:20: + + integer i, j, k, m, im2, jm2 + 1 +Warning: Unused variable ‘m’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_update_phys.F90:223:21: + + real:: qstar, dbk, rdg, zvir, p_fac, cv_air, gama_dt + 1 +Warning: Unused variable ‘dbk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_update_phys.F90:139:52: + + gridstruct, lona, lata, npx, npy, npz, flagstruct, & + 1 +Warning: Unused dummy argument ‘lata’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_update_phys.F90:139:46: + + gridstruct, lona, lata, npx, npy, npz, flagstruct, & + 1 +Warning: Unused dummy argument ‘lona’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_update_phys.F90:136:37: + + u, v, w, delp, pt, q, qdiag, ua, va, ps, pe, peln, pk, pkz, & + 1 +Warning: Unused dummy argument ‘w’ at (1) [-Wunused-dummy-argument] +[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:4246:25: + + zh(i,j,k) = zh(i,j,k+1)+(t(i,j,k)*(1.+zvir*q(i,j,k,1))*(pn0(i,k+1)-pn0(i,k)))*(rdgas/grav) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:1747:18: + + psec(:,:) = exp(wk2_r4(:,:)*scale_value + offset) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:1753:18: + + zsec(:,:) = (wk2_r4(:,:)*scale_value + offset)/grav + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:1764:19: + + tec(:,:,:) = tec(:,:,:)*scale_value + offset + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:1773:23: + + sphumec(:,:,:) = sphumec(:,:,:)*scale_value + offset + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:1787:32: + + qec(:,:,:,liq_wat) = qec(:,:,:,liq_wat)*scale_value + offset + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:1793:32: + + qec(:,:,:,rainwat) = qec(:,:,:,rainwat)*scale_value + offset + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:1799:32: + + qec(:,:,:,ice_wat) = qec(:,:,:,ice_wat)*scale_value + offset + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:1805:32: + + qec(:,:,:,snowwat) = qec(:,:,:,snowwat)*scale_value + offset + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:1842:23: + + psc(i,j) = s2c(i,j,1)*psec(i1,j1 ) + s2c(i,j,2)*psec(i2,j1 ) + & + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:1899:19: + + wec(:,:,:) = wec(:,:,:)*scale_value + offset + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:1968:26: + + uec(i,j,k) = uec(i,j,k)*scale_value + offset + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:1980:26: + + vec(i,j,k) = vec(i,j,k)*scale_value + offset + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:2038:19: + + uec(:,:,:) = uec(:,:,:)*scale_value + offset + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:2044:19: + + vec(:,:,:) = vec(:,:,:)*scale_value + offset + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:1254:42: + + wk2(i,j) = tmean + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:4016:23: + + integer :: ks, ke + 1 +Warning: Unused variable ‘ke’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:4016:19: + + integer :: ks, ke + 1 +Warning: Unused variable ‘ks’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:3534:55: + + subroutine remap_xyz( im, jbeg, jend, jm, km, npz, nq, ncnst, lon, lat, ak0, bk0, ps0, gz0, & + 1 +Warning: Unused dummy argument ‘nq’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:3460:26: + + subroutine remap_winds(im, jm, km, npz, ak0, bk0, psc, ua, va, Atm) + 1 +Warning: Unused dummy argument ‘im’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:3460:30: + + subroutine remap_winds(im, jm, km, npz, ak0, bk0, psc, ua, va, Atm) + 1 +Warning: Unused dummy argument ‘jm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:3252:34: + + real(kind=R_GRID):: gz_fv(npz+1) + 1 +Warning: Unused variable ‘gz_fv’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:3249:50: + + real wk(Atm%bd%is:Atm%bd%ie,Atm%bd%js:Atm%bd%je) + 1 +Warning: Unused variable ‘wk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:2995:16: + + integer:: o3mr + 1 +Warning: Unused variable ‘o3mr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:2444:20: + + real p1, p2, alpha, rdg + 1 +Warning: Unused variable ‘alpha’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:2452:23: + + integer sphum, clwmr + 1 +Warning: Unused variable ‘clwmr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:2429:27: + + subroutine remap_scalar(im, jm, km, npz, nq, ncnst, ak0, bk0, psc, gzc, ta, qa, Atm) + 1 +Warning: Unused dummy argument ‘im’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:2429:31: + + subroutine remap_scalar(im, jm, km, npz, nq, ncnst, ak0, bk0, psc, gzc, ta, qa, Atm) + 1 +Warning: Unused dummy argument ‘jm’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:2429:44: + + subroutine remap_scalar(im, jm, km, npz, nq, ncnst, ak0, bk0, psc, gzc, ta, qa, Atm) + 1 +Warning: Unused dummy argument ‘nq’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:2449:14: + + integer o3mr + 1 +Warning: Unused variable ‘o3mr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:2444:9: + + real p1, p2, alpha, rdg + 1 +Warning: Unused variable ‘p1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:2444:13: + + real p1, p2, alpha, rdg + 1 +Warning: Unused variable ‘p2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:2445:30: + + real(kind=R_GRID):: pst, pt0 + 1 +Warning: Unused variable ‘pt0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:2113:38: + + subroutine get_fv_ic( Atm, fv_domain, nq ) + 1 +Warning: Unused dummy argument ‘fv_domain’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:1505:21: + + logical:: found + 1 +Warning: Unused variable ‘found’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:1370:41: + + subroutine get_ecmwf_ic( Atm, fv_domain ) + 1 +Warning: Unused dummy argument ‘fv_domain’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:1504:23: + + logical:: land_ts = .false. + 1 +Warning: Unused variable ‘land_ts’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:1499:48: + + integer:: i, j, k, n, im, jm, km, npz, npt + 1 +Warning: Unused variable ‘npt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:1525:53: + + integer :: id_res, ntprog, ntracers, ks, iq, nt + 1 +Warning: Unused variable ‘nt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:1515:47: + + real(kind=8) :: scale_value, offset, ptmp + 1 +Warning: Unused variable ‘ptmp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:1503:23: + + logical:: read_ts = .true. + 1 +Warning: Unused variable ‘read_ts’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:1526:38: + + character(len=64) :: tracer_name + 1 +Warning: Unused variable ‘tracer_name’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:1049:40: + + subroutine get_ncep_ic( Atm, fv_domain, nq ) + 1 +Warning: Unused dummy argument ‘fv_domain’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:445:41: + + subroutine get_nggps_ic (Atm, fv_domain) + 1 +Warning: Unused dummy argument ‘fv_domain’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:487:29: + + character(len=6) :: gn, stile_name + 1 +Warning: Unused variable ‘gn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:481:14: + + real rdg, wt, qt, m_fac + 1 +Warning: Unused variable ‘rdg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:487:41: + + character(len=6) :: gn, stile_name + 1 +Warning: Unused variable ‘stile_name’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:381:38: + + real, allocatable :: g_dat2(:,:,:) + 1 +Warning: Unused variable ‘g_dat2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:383:24: + + integer isc_p, iec_p, jsc_p, jec_p, isg, ieg, jsg,jeg + 1 +Warning: Unused variable ‘iec_p’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:383:48: + + integer isc_p, iec_p, jsc_p, jec_p, isg, ieg, jsg,jeg + 1 +Warning: Unused variable ‘ieg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:383:17: + + integer isc_p, iec_p, jsc_p, jec_p, isg, ieg, jsg,jeg + 1 +Warning: Unused variable ‘isc_p’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:383:43: + + integer isc_p, iec_p, jsc_p, jec_p, isg, ieg, jsg,jeg + 1 +Warning: Unused variable ‘isg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:379:33: + + integer :: jbeg, jend + 1 +Warning: Unused variable ‘jbeg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:383:38: + + integer isc_p, iec_p, jsc_p, jec_p, isg, ieg, jsg,jeg + 1 +Warning: Unused variable ‘jec_p’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:383:57: + + integer isc_p, iec_p, jsc_p, jec_p, isg, ieg, jsg,jeg + 1 +Warning: Unused variable ‘jeg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:379:39: + + integer :: jbeg, jend + 1 +Warning: Unused variable ‘jend’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:383:31: + + integer isc_p, iec_p, jsc_p, jec_p, isg, ieg, jsg,jeg + 1 +Warning: Unused variable ‘jsc_p’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:383:53: + + integer isc_p, iec_p, jsc_p, jec_p, isg, ieg, jsg,jeg + 1 +Warning: Unused variable ‘jsg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:382:41: + + real, allocatable :: pt_coarse(:,:,:) + 1 +Warning: Unused variable ‘pt_coarse’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:210:57: + + subroutine get_external_ic( Atm, fv_domain, cold_start ) + 1 +Warning: Unused dummy argument ‘cold_start’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:217:19: + + integer i,j,k,nq + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/external_ic.F90:216:14: + + real rdg + 1 +Warning: Unused variable ‘rdg’ declared at (1) [-Wunused-variable] +[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:1546:1: + + uc, vc, dord4, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:1845:27: + + integer npt, i, j, ifirst, ilast, id + 1 +Warning: Unused variable ‘ifirst’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:1845:34: + + integer npt, i, j, ifirst, ilast, id + 1 +Warning: Unused variable ‘ilast’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:1445:24: + + integer :: file_unit + 1 +Warning: Unused variable ‘file_unit’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:1446:37: + + integer, allocatable :: pelist(:) + 1 +Warning: Unused variable ‘pelist’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:1325:37: + + real, allocatable :: g_dat(:,:,:), pt_coarse(:,:,:) + 1 +Warning: Unused variable ‘g_dat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:1326:16: + + integer :: i,j,k,nq, sphum, ncnst, istart, iend, npz + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:1330:27: + + integer :: isg_n, ieg_n, jsg_n, jeg_n, npx_n, npy_n + 1 +Warning: Unused variable ‘ieg_n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:1326:51: + + integer :: i,j,k,nq, sphum, ncnst, istart, iend, npz + 1 +Warning: Unused variable ‘iend’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:1330:20: + + integer :: isg_n, ieg_n, jsg_n, jeg_n, npx_n, npy_n + 1 +Warning: Unused variable ‘isg_n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:1326:45: + + integer :: i,j,k,nq, sphum, ncnst, istart, iend, npz + 1 +Warning: Unused variable ‘istart’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:1326:18: + + integer :: i,j,k,nq, sphum, ncnst, istart, iend, npz + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:1330:41: + + integer :: isg_n, ieg_n, jsg_n, jeg_n, npx_n, npy_n + 1 +Warning: Unused variable ‘jeg_n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:1330:34: + + integer :: isg_n, ieg_n, jsg_n, jeg_n, npx_n, npy_n + 1 +Warning: Unused variable ‘jsg_n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:1326:20: + + integer :: i,j,k,nq, sphum, ncnst, istart, iend, npz + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:1330:48: + + integer :: isg_n, ieg_n, jsg_n, jeg_n, npx_n, npy_n + 1 +Warning: Unused variable ‘npx_n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:1330:55: + + integer :: isg_n, ieg_n, jsg_n, jeg_n, npx_n, npy_n + 1 +Warning: Unused variable ‘npy_n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:1326:23: + + integer :: i,j,k,nq, sphum, ncnst, istart, iend, npz + 1 +Warning: Unused variable ‘nq’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:1333:16: + + integer :: p , sending_proc + 1 +Warning: Unused variable ‘p’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:1325:55: + + real, allocatable :: g_dat(:,:,:), pt_coarse(:,:,:) + 1 +Warning: Unused variable ‘pt_coarse’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:1326:30: + + integer :: i,j,k,nq, sphum, ncnst, istart, iend, npz + 1 +Warning: Unused variable ‘sphum’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:1331:13: + + real zvir + 1 +Warning: Unused variable ‘zvir’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:954:18: + + real zvir, gh0, p1(2), p2(2), r, r0 + 1 +Warning: Unused variable ‘gh0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:953:27: + + integer :: isg_n, ieg_n, jsg_n, jeg_n, npx_n, npy_n + 1 +Warning: Unused variable ‘ieg_n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:953:20: + + integer :: isg_n, ieg_n, jsg_n, jeg_n, npx_n, npy_n + 1 +Warning: Unused variable ‘isg_n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:953:41: + + integer :: isg_n, ieg_n, jsg_n, jeg_n, npx_n, npy_n + 1 +Warning: Unused variable ‘jeg_n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:953:34: + + integer :: isg_n, ieg_n, jsg_n, jeg_n, npx_n, npy_n + 1 +Warning: Unused variable ‘jsg_n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:956:38: + + integer :: p, sending_proc, gid, n + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:953:48: + + integer :: isg_n, ieg_n, jsg_n, jeg_n, npx_n, npy_n + 1 +Warning: Unused variable ‘npx_n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:953:55: + + integer :: isg_n, ieg_n, jsg_n, jeg_n, npx_n, npy_n + 1 +Warning: Unused variable ‘npy_n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:954:25: + + real zvir, gh0, p1(2), p2(2), r, r0 + 1 +Warning: Unused variable ‘p1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:954:32: + + real zvir, gh0, p1(2), p2(2), r, r0 + 1 +Warning: Unused variable ‘p2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:954:35: + + real zvir, gh0, p1(2), p2(2), r, r0 + 1 +Warning: Unused variable ‘r’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:954:39: + + real zvir, gh0, p1(2), p2(2), r, r0 + 1 +Warning: Unused variable ‘r0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:732:52: + + real :: qv, dp1, q_liq, q_sol, q_con, cvm, cappa, dp, pt, dz, pkz, rdg + 1 +Warning: Unused variable ‘cappa’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:732:45: + + real :: qv, dp1, q_liq, q_sol, q_con, cvm, cappa, dp, pt, dz, pkz, rdg + 1 +Warning: Unused variable ‘cvm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:732:56: + + real :: qv, dp1, q_liq, q_sol, q_con, cvm, cappa, dp, pt, dz, pkz, rdg + 1 +Warning: Unused variable ‘dp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:732:19: + + real :: qv, dp1, q_liq, q_sol, q_con, cvm, cappa, dp, pt, dz, pkz, rdg + 1 +Warning: Unused variable ‘dp1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:732:64: + + real :: qv, dp1, q_liq, q_sol, q_con, cvm, cappa, dp, pt, dz, pkz, rdg + 1 +Warning: Unused variable ‘dz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:724:37: + + real, allocatable :: g_dat(:,:,:), g_dat2(:,:,:) + 1 +Warning: Unused variable ‘g_dat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:724:52: + + real, allocatable :: g_dat(:,:,:), g_dat2(:,:,:) + 1 +Warning: Unused variable ‘g_dat2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:726:13: + + integer i,j,k,nq, sphum, ncnst, istart, iend, npz, nwat + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:726:48: + + integer i,j,k,nq, sphum, ncnst, istart, iend, npz, nwat + 1 +Warning: Unused variable ‘iend’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:726:42: + + integer i,j,k,nq, sphum, ncnst, istart, iend, npz, nwat + 1 +Warning: Unused variable ‘istart’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:726:15: + + integer i,j,k,nq, sphum, ncnst, istart, iend, npz, nwat + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:726:17: + + integer i,j,k,nq, sphum, ncnst, istart, iend, npz, nwat + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:732:69: + + real :: qv, dp1, q_liq, q_sol, q_con, cvm, cappa, dp, pt, dz, pkz, rdg + 1 +Warning: Unused variable ‘pkz’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:732:60: + + real :: qv, dp1, q_liq, q_sol, q_con, cvm, cappa, dp, pt, dz, pkz, rdg + 1 +Warning: Unused variable ‘pt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:725:41: + + real, allocatable :: pt_coarse(:,:,:) + 1 +Warning: Unused variable ‘pt_coarse’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:732:40: + + real :: qv, dp1, q_liq, q_sol, q_con, cvm, cappa, dp, pt, dz, pkz, rdg + 1 +Warning: Unused variable ‘q_con’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:732:26: + + real :: qv, dp1, q_liq, q_sol, q_con, cvm, cappa, dp, pt, dz, pkz, rdg + 1 +Warning: Unused variable ‘q_liq’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:732:33: + + real :: qv, dp1, q_liq, q_sol, q_con, cvm, cappa, dp, pt, dz, pkz, rdg + 1 +Warning: Unused variable ‘q_sol’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:732:14: + + real :: qv, dp1, q_liq, q_sol, q_con, cvm, cappa, dp, pt, dz, pkz, rdg + 1 +Warning: Unused variable ‘qv’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:732:74: + + real :: qv, dp1, q_liq, q_sol, q_con, cvm, cappa, dp, pt, dz, pkz, rdg + 1 +Warning: Unused variable ‘rdg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:726:27: + + integer i,j,k,nq, sphum, ncnst, istart, iend, npz, nwat + 1 +Warning: Unused variable ‘sphum’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:729:13: + + real zvir + 1 +Warning: Unused variable ‘zvir’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:195:48: + + subroutine fv_restart(fv_domain, Atm, dt_atmos, seconds, days, cold_start, grid_type, grids_on_this_pe) + 1 +Warning: Unused dummy argument ‘dt_atmos’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:195:33: + + subroutine fv_restart(fv_domain, Atm, dt_atmos, seconds, days, cold_start, grid_type, grids_on_this_pe) + 1 +Warning: Unused dummy argument ‘fv_domain’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:210:37: + + real, allocatable :: g_dat(:,:,:) + 1 +Warning: Unused variable ‘g_dat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:209:52: + + integer isd_p, ied_p, jsd_p, jed_p, isc_p, iec_p, jsc_p, jec_p, isg, ieg, jsg,jeg, npx_p, npy_p + 1 +Warning: Unused variable ‘iec_p’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:209:24: + + integer isd_p, ied_p, jsd_p, jed_p, isc_p, iec_p, jsc_p, jec_p, isg, ieg, jsg,jeg, npx_p, npy_p + 1 +Warning: Unused variable ‘ied_p’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:209:45: + + integer isd_p, ied_p, jsd_p, jed_p, isc_p, iec_p, jsc_p, jec_p, isg, ieg, jsg,jeg, npx_p, npy_p + 1 +Warning: Unused variable ‘isc_p’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:209:17: + + integer isd_p, ied_p, jsd_p, jed_p, isc_p, iec_p, jsc_p, jec_p, isg, ieg, jsg,jeg, npx_p, npy_p + 1 +Warning: Unused variable ‘isd_p’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:209:66: + + integer isd_p, ied_p, jsd_p, jed_p, isc_p, iec_p, jsc_p, jec_p, isg, ieg, jsg,jeg, npx_p, npy_p + 1 +Warning: Unused variable ‘jec_p’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:209:38: + + integer isd_p, ied_p, jsd_p, jed_p, isc_p, iec_p, jsc_p, jec_p, isg, ieg, jsg,jeg, npx_p, npy_p + 1 +Warning: Unused variable ‘jed_p’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:209:59: + + integer isd_p, ied_p, jsd_p, jed_p, isc_p, iec_p, jsc_p, jec_p, isg, ieg, jsg,jeg, npx_p, npy_p + 1 +Warning: Unused variable ‘jsc_p’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:209:31: + + integer isd_p, ied_p, jsd_p, jed_p, isc_p, iec_p, jsc_p, jec_p, isg, ieg, jsg,jeg, npx_p, npy_p + 1 +Warning: Unused variable ‘jsd_p’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:209:92: + + integer isd_p, ied_p, jsd_p, jed_p, isc_p, iec_p, jsc_p, jec_p, isg, ieg, jsg,jeg, npx_p, npy_p + 1 +Warning: Unused variable ‘npx_p’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:209:99: + + integer isd_p, ied_p, jsd_p, jed_p, isc_p, iec_p, jsc_p, jec_p, isg, ieg, jsg,jeg, npx_p, npy_p + 1 +Warning: Unused variable ‘npy_p’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:207:47: + + integer :: isc, iec, jsc, jec, npz, npz_rst, ncnst, ntprog, ntdiag + 1 +Warning: Unused variable ‘npz_rst’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/tools/fv_restart.F90:206:38: + + integer :: i, j, k, n, ntileMe, nt, iq + 1 +Warning: Unused variable ‘nt’ declared at (1) [-Wunused-variable] +[ 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:1291:41: + + parent_grid%delp(i,j,k) = parent_grid%delp(i,j,k) + q_diff(i,j,k) + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_control.F90:928:22: + + m_split = 1. + abs(dt_atmos)/real(k_split*n_split*abs(p_split)) + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:132:23: + + logical :: bad_range + 1 +Warning: Unused PRIVATE module variable ‘bad_range’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:137:41: + + real, allocatable :: dp1_coarse(:,:,:) + 1 +Warning: Unused PRIVATE module variable ‘dp1_coarse’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:134:18: + + integer :: kmax=1 + 1 +Warning: Unused PRIVATE module variable ‘kmax’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:133:30: + + real, allocatable :: rf(:), rw(:) + 1 +Warning: Unused PRIVATE module variable ‘rf’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:131:28: + + logical :: RF_initialized = .false. + 1 +Warning: Unused PRIVATE module variable ‘rf_initialized’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:133:37: + + real, allocatable :: rf(:), rw(:) + 1 +Warning: Unused PRIVATE module variable ‘rw’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:136:41: + + real, allocatable :: te_2d_coarse(:,:) + 1 +Warning: Unused PRIVATE module variable ‘te_2d_coarse’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_control.F90:335:41: + + real, pointer :: s_weight, update_blend + 1 +Warning: Unused PRIVATE module variable ‘update_blend’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:1636:53: + + subroutine update_remap_tqw( npz, ak, bk, ps, delp, t, q, w, hydrostatic, & + 1 +Warning: Unused dummy argument ‘delp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:1637:36: + + kmd, ps0, zvir, ptop, nq, kord_tm, kord_tr, kord_wz, & + 1 +Warning: Unused dummy argument ‘zvir’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:1543:51: + + ps, pe, pk, peln, pkz, phis, ua, va, & + 1 +Warning: Unused dummy argument ‘phis’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:1512:37: + + subroutine level_sum(q, area, domain, bd, npz, L_sum) + 1 +Warning: Unused dummy argument ‘domain’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:1521:25: + + integer :: i, j, k, n + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:1092:41: + + uc, vc, pkz, delz, ps, ptop, & + 1 +Warning: Unused dummy argument ‘delz’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:1126:23: + + integer :: isg, ieg, jsg,jeg, npx_p, npy_p + 1 +Warning: Unused variable ‘ieg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:1127:27: + + integer :: istart, iend + 1 +Warning: Unused variable ‘iend’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:1126:18: + + integer :: isg, ieg, jsg,jeg, npx_p, npy_p + 1 +Warning: Unused variable ‘isg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:1127:21: + + integer :: istart, iend + 1 +Warning: Unused variable ‘istart’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:1126:32: + + integer :: isg, ieg, jsg,jeg, npx_p, npy_p + 1 +Warning: Unused variable ‘jeg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:1126:28: + + integer :: isg, ieg, jsg,jeg, npx_p, npy_p + 1 +Warning: Unused variable ‘jsg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:1126:39: + + integer :: isg, ieg, jsg,jeg, npx_p, npy_p + 1 +Warning: Unused variable ‘npx_p’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:1126:46: + + integer :: isg, ieg, jsg,jeg, npx_p, npy_p + 1 +Warning: Unused variable ‘npy_p’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:1091:37: + + u, v, w, omga, pt, delp, q, & + 1 +Warning: Unused dummy argument ‘omga’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:1128:28: + + real :: qmass_b, qmass_a, fix = 1. + 1 +Warning: Unused variable ‘qmass_a’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:1128:19: + + real :: qmass_b, qmass_a, fix = 1. + 1 +Warning: Unused variable ‘qmass_b’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:1092:26: + + uc, vc, pkz, delz, ps, ptop, & + 1 +Warning: Unused dummy argument ‘uc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:1129:19: + + logical :: used, conv_theta=.true. + 1 +Warning: Unused variable ‘used’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:1092:30: + + uc, vc, pkz, delz, ps, ptop, & + 1 +Warning: Unused dummy argument ‘vc’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_control.F90:1057:21: + + integer :: f_unit, ios, ierr + 1 +Warning: Unused variable ‘f_unit’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_control.F90:1056:37: + + integer, allocatable :: pelist(:) + 1 +Warning: Unused variable ‘pelist’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:1050:18: + + integer :: n, p, sphum + 1 +Warning: Unused variable ‘p’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_control.F90:638:44: + + real :: dimx, dl, dp, dxmin, dymin, d_fac + 1 +Warning: Unused variable ‘d_fac’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_control.F90:631:20: + + logical :: exists + 1 +Warning: Unused variable ‘exists’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_control.F90:630:31: + + integer :: ios, ierr, f_unit, unit + 1 +Warning: Unused variable ‘f_unit’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_control.F90:628:34: + + character(len=80) :: tracerName, errString + 1 +Warning: Unused variable ‘tracername’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_control.F90:386:16: + + integer :: ic, jc + 1 +Warning: Unused variable ‘ic’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_control.F90:386:20: + + integer :: ic, jc + 1 +Warning: Unused variable ‘jc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_control.F90:379:21: + + integer :: i, j, k, n, p + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_control.F90:379:27: + + integer :: i, j, k, n, p + 1 +Warning: Unused variable ‘p’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_nesting.F90:162:40: + + domain, bd, nwat) + 1 +Warning: Unused dummy argument ‘nwat’ at (1) [-Wunused-dummy-argument] +[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_dynamics.F90:159:18: + + integer :: k_rf = 0 + 1 +Warning: Unused PRIVATE module variable ‘k_rf’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_dynamics.F90:1300:51: + + subroutine Rayleigh_Friction(dt, npx, npy, npz, ks, pm, tau, u, v, w, pt, & + 1 +Warning: Unused dummy argument ‘ks’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_dynamics.F90:1300:37: + + subroutine Rayleigh_Friction(dt, npx, npy, npz, ks, pm, tau, u, v, w, pt, & + 1 +Warning: Unused dummy argument ‘npx’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_dynamics.F90:1300:42: + + subroutine Rayleigh_Friction(dt, npx, npy, npz, ks, pm, tau, u, v, w, pt, & + 1 +Warning: Unused dummy argument ‘npy’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_dynamics.F90:1125:39: + + ua, va, delz, agrid, cp, rg, ptop, hydrostatic, & + 1 +Warning: Unused dummy argument ‘delz’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_dynamics.F90:1124:34: + + subroutine Rayleigh_Super(dt, npx, npy, npz, ks, pm, phis, tau, u, v, w, pt, & + 1 +Warning: Unused dummy argument ‘npx’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_dynamics.F90:1124:39: + + subroutine Rayleigh_Super(dt, npx, npy, npz, ks, pm, phis, tau, u, v, w, pt, & + 1 +Warning: Unused dummy argument ‘npy’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_dynamics.F90:1124:58: + + subroutine Rayleigh_Super(dt, npx, npy, npz, ks, pm, phis, tau, u, v, w, pt, & + 1 +Warning: Unused dummy argument ‘phis’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_dynamics.F90:290:21: + + integer :: ierr + 1 +Warning: Unused variable ‘ierr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_dynamics.F90:275:25: + + integer :: i,j,k, n, iq, n_map, nq, nwat, k_split + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/model/fv_dynamics.F90:178:53: + + ak, bk, mfx, mfy, cx, cy, ze0, hybrid_z, & + 1 +Warning: Unused dummy argument ‘ze0’ at (1) [-Wunused-dummy-argument] +[ 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90:242:55: + + integer, dimension(:), allocatable :: id_tracerdt_dyn + 1 +Warning: Unused PRIVATE module variable ‘id_tracerdt_dyn’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90:254:23: + + integer :: id_udt_dyn, id_vdt_dyn + 1 +Warning: Unused PRIVATE module variable ‘id_udt_dyn’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90:254:35: + + integer :: id_udt_dyn, id_vdt_dyn + 1 +Warning: Unused PRIVATE module variable ‘id_vdt_dyn’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90:225:31: + + character(len=20) :: mod_name = 'fvGFS/atmosphere_mod' + 1 +Warning: Unused PRIVATE module variable ‘mod_name’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90:1396:29: + + real(kind=kind_phys):: rcp, q0, qwat(nq), qt, rdt + 1 +Warning: Unused variable ‘rcp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90:940:25: + + integer:: lev, k, j, i, npx, npy + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90:940:22: + + integer:: lev, k, j, i, npx, npy + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90:940:16: + + integer:: lev, k, j, i, npx, npy + 1 +Warning: Unused variable ‘lev’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90:715:42: + + subroutine atmosphere_end (Time, Grid_box) + 1 +Warning: Unused dummy argument ‘grid_box’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90:715:32: + + subroutine atmosphere_end (Time, Grid_box) + 1 +Warning: Unused dummy argument ‘time’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90:608:32: + + type(time_type) :: atmos_time + 1 +Warning: Unused variable ‘atmos_time’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90:605:37: + + integer :: n, psc, atmos_time_step + 1 +Warning: Unused variable ‘atmos_time_step’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90:606:15: + + integer :: k, w_diff, nt_dyn, n_split_loc, seconds, days + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90:546:26: + + delp, pt, ps, pe, peln, pk, pkz, hydrostatic) + 1 +Warning: Unused dummy argument ‘pt’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90:303:28: + + logical :: do_atmos_nudge + 1 +Warning: Unused variable ‘do_atmos_nudge’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90:304:35: + + character(len=32) :: tracer_name, tracer_units + 1 +Warning: Unused variable ‘tracer_name’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90:304:49: + + character(len=32) :: tracer_name, tracer_units + 1 +Warning: Unused variable ‘tracer_units’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90:545:0: + + subroutine p_adi(km, ng, ifirst, ilast, jfirst, jlast, ptop, & + +Warning: ‘p_adi’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90:1162:0: + + subroutine get_bottom_mass ( t_bot, tr_bot, p_bot, z_bot, p_surf, slp ) + +Warning: ‘get_bottom_mass’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90:1226:0: + + subroutine get_bottom_wind ( u_bot, v_bot ) + +Warning: ‘get_bottom_wind’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90:1329:0: + + subroutine get_stock_pe(index, value) + +Warning: ‘get_stock_pe’ defined but not used [-Wunused-function] +[ 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/update_ca.f90:205:10: + + count5 = count - count_trunc + 1 +Warning: Possible change of value in conversion from INTEGER(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/update_ca.f90:397:24: + + neighbours(i,j)=board_halo(ih-1,jh-1,1)+board_halo(ih-1,jh,1)+ & + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/update_ca.f90:49:21: + + real :: E_sq2, E2, g2, B_sq2, B2, sqrtdt,flamx2, tmp1, tmp1a + 1 +Warning: Unused variable ‘g2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/update_ca.f90:33:16: + + integer :: haloh, ih, jh,lives_max,kend + 1 +Warning: Unused variable ‘haloh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/update_ca.f90:32:35: + + integer :: inci, incj, i, j, k, iii,sub,spinup,it,halo,k_in,isize,jsize + 1 +Warning: Unused variable ‘iii’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/update_ca.f90:34:60: + + real :: thresh,threshc,threshk,wp_max,wp_min,mthresh,kthresh + 1 +Warning: Unused variable ‘kthresh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/update_ca.f90:34:52: + + real :: thresh,threshc,threshk,wp_max,wp_min,mthresh,kthresh + 1 +Warning: Unused variable ‘mthresh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/update_ca.f90:16:47: + + nlives,ncells,nfracseed,nseed,nthresh,ca_global, & + 1 +Warning: Unused dummy argument ‘nfracseed’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/update_ca.f90:39:36: + + real,dimension(nxc,nyc) :: normlives + 1 +Warning: Unused variable ‘normlives’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/update_ca.f90:34:14: + + real :: thresh,threshc,threshk,wp_max,wp_min,mthresh,kthresh + 1 +Warning: Unused variable ‘thresh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/update_ca.f90:34:22: + + real :: thresh,threshc,threshk,wp_max,wp_min,mthresh,kthresh + 1 +Warning: Unused variable ‘threshc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/update_ca.f90:34:30: + + real :: thresh,threshc,threshk,wp_max,wp_min,mthresh,kthresh + 1 +Warning: Unused variable ‘threshk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/update_ca.f90:34:37: + + real :: thresh,threshc,threshk,wp_max,wp_min,mthresh,kthresh + 1 +Warning: Unused variable ‘wp_max’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/update_ca.f90:34:44: + + real :: thresh,threshc,threshk,wp_max,wp_min,mthresh,kthresh + 1 +Warning: Unused variable ‘wp_min’ declared at (1) [-Wunused-variable] +[ 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/glats_stochy.f:61:20: + + colrad(k) = rad + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/glats_stochy.f:66:19: + + wgt(k) = w + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/glats_stochy.f:69:19: + + wgtcs(k) = w + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/glats_stochy.f:71:19: + + rcs2(k) = rc + 1 +Warning: Possible change of value in conversion from REAL(16) to REAL(8) at (1) [-Wconversion] +[ 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/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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_lats_node_a_stochy.f:22:23: + + integer jptlats + 1 +Warning: Unused variable ‘jptlats’ declared at (1) [-Wunused-variable] +[ 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/pln2eo_stochy.f:53:32: + + real(kind=kind_dbl_prec) a,alp1,alp2,alp3,b + 1 +Warning: Unused variable ‘a’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/pln2eo_stochy.f:53:49: + + real(kind=kind_dbl_prec) a,alp1,alp2,alp3,b + 1 +Warning: Unused variable ‘b’ declared at (1) [-Wunused-variable] +[ 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochy_internal_state_mod.F90:30:41: + + type,public::stochy_internal_state ! start type define + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochy_internal_state_mod.F90:126:37: + + end type stochy_internal_state ! end type define + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochy_internal_state_mod.F90:132:23: + + type stochy_wrap ! begin type define + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochy_internal_state_mod.F90:134:27: + + end type stochy_wrap ! end type define + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +[ 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/compns_stochy.F90:8:63: + + subroutine compns_stochy (me,sz_nml,input_nml_file,fn_nml,nlunit,deltim,iret) + 1 +Warning: Unused dummy argument ‘fn_nml’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/compns_stochy.F90:48:19: + + integer k,ios + 1 +Warning: Unused variable ‘ios’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/compns_stochy.F90:8:70: + + subroutine compns_stochy (me,sz_nml,input_nml_file,fn_nml,nlunit,deltim,iret) + 1 +Warning: Unused dummy argument ‘nlunit’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochy_patterngenerator.F90:194:17: + + var = var + dataspec(n)*conjg(dataspec(n)) + 1 +Warning: Possible change of value in conversion from COMPLEX(8) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochy_patterngenerator.F90:196:17: + + var = var + 0.5*dataspec(n)*conjg(dataspec(n)) + 1 +Warning: Possible change of value in conversion from COMPLEX(8) to REAL(8) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochy_patterngenerator.F90:145:20: + + count4 = count - count_trunc !+ member_id + 1 +Warning: Possible change of value in conversion from INTEGER(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochy_patterngenerator.F90:152:20: + + count4 = mod(iseed(np) + 2147483648, 4294967296) - 2147483648 + 1 +Warning: Possible change of value in conversion from INTEGER(8) to INTEGER(4) at (1) [-Wconversion] +[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochy_patterngenerator.F90:259:13: + + integer j,l,n,nn,nm,k,k2 + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochy_patterngenerator.F90:259:15: + + integer j,l,n,nn,nm,k,k2 + 1 +Warning: Unused variable ‘l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochy_patterngenerator.F90:259:17: + + integer j,l,n,nn,nm,k,k2 + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochy_patterngenerator.F90:49:23: + + integer count4, ierr + 1 +Warning: Unused variable ‘ierr’ declared at (1) [-Wunused-variable] +[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/sumfln_stochy.f:205:42: + + works(1,nvar,kn,node) = apev(n2-1,ipt_ls) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/sumfln_stochy.f:207:42: + + works(2,nvar,kn,node) = apev(n2, ipt_ls) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/sumfln_stochy.f:214:42: + + works(1,nvar,kn,node) = apev(n2-1,ipt_ls) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/sumfln_stochy.f:216:42: + + works(2,nvar,kn,node) = apev(n2, ipt_ls) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/sumfln_stochy.f:76:56: + + integer ierr,ilat,ipt_ls, lmax,lval,i,jj,lonl,nv + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/sumfln_stochy.f:76:31: + + integer ierr,ilat,ipt_ls, lmax,lval,i,jj,lonl,nv + 1 +Warning: Unused variable ‘ierr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/sumfln_stochy.f:47:31: + + integer j, k, l, lat, lat1, n, kn, n2,indev,indod + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/sumfln_stochy.f:15:9: + + use stochy_resol_def , only : jcap,latgd + 1 +Warning: Unused module variable ‘latgd’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/getcon_lag_stochy.f:57:4: + + 830 format(10(i4,1x)) + 1 +Warning: Label 830 at (1) defined but not used [-Wunused-label] +[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/getcon_spectral.F90:14:56: + + plnew_a,plnow_a,colat1) + 1 +Warning: Unused dummy argument ‘colat1’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/getcon_spectral.F90:65:23: + + real fd2 + 1 +Warning: Unused variable ‘fd2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/getcon_spectral.F90:10:64: + + lats_nodes_ext,global_lats_ext, & + 1 +Warning: Unused dummy argument ‘global_lats_ext’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/getcon_spectral.F90:34:49: + + integer ls_node(ls_dim,3),ierr + 1 +Warning: Unused variable ‘ierr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/getcon_spectral.F90:33:32: + + integer i,j,k,l,lat,lan,lons_lat,n + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/getcon_spectral.F90:33:42: + + integer i,j,k,l,lat,lan,lons_lat,n + 1 +Warning: Unused variable ‘lan’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/getcon_spectral.F90:10:48: + + lats_nodes_ext,global_lats_ext, & + 1 +Warning: Unused dummy argument ‘lats_nodes_ext’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/getcon_spectral.F90:33:51: + + integer i,j,k,l,lat,lan,lons_lat,n + 1 +Warning: Unused variable ‘lons_lat’ declared at (1) [-Wunused-variable] +[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/initialize_spectral_mod.F90:51:31: + + integer :: ierr, npe_single_member, iret,latghf + 1 +Warning: Unused variable ‘ierr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/initialize_spectral_mod.F90:53:31: + + integer :: i, j, k, l, n, locl + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/initialize_spectral_mod.F90:53:34: + + integer :: i, j, k, l, n, locl + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/initialize_spectral_mod.F90:53:40: + + integer :: i, j, k, l, n, locl + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/initialize_spectral_mod.F90:52:45: + + integer :: num_parthds_stochy + 1 +Warning: Unused variable ‘num_parthds_stochy’ declared at (1) [-Wunused-variable] +[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochy_data_mod.F90:145:20: + + nspinup = spinup_efolds*sppt_tau(n)/delt + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochy_data_mod.F90:177:20: + + nspinup = spinup_efolds*shum_tau(n)/delt + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochy_data_mod.F90:214:23: + + nspinup = spinup_efolds*skeb_tau(n)/delt + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochy_data_mod.F90:307:21: + + nspinup = spinup_efolds*sfc_tau(n)/delt + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochy_data_mod.F90:341:21: + + integer nm,nn,ierr,jcap,isize,k + 1 +Warning: Unused variable ‘ierr’ declared at (1) [-Wunused-variable] +[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:314:110: + + upattern_3d(blk,:,k) = skeb_vwts(k,1)*skebu_save(blk,:,skeb_vpts(k,1))+skeb_vwts(k,2)*skebu_save(blk,:,skeb_vpts(k,2)) + 1 +Warning: Legacy Extension: REAL array index at (1) +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:314:62: + + upattern_3d(blk,:,k) = skeb_vwts(k,1)*skebu_save(blk,:,skeb_vpts(k,1))+skeb_vwts(k,2)*skebu_save(blk,:,skeb_vpts(k,2)) + 1 +Warning: Legacy Extension: REAL array index at (1) +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:315:110: + + vpattern_3d(blk,:,k) = skeb_vwts(k,1)*skebv_save(blk,:,skeb_vpts(k,1))+skeb_vwts(k,2)*skebv_save(blk,:,skeb_vpts(k,2)) + 1 +Warning: Legacy Extension: REAL array index at (1) +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:315:62: + + vpattern_3d(blk,:,k) = skeb_vwts(k,1)*skebv_save(blk,:,skeb_vpts(k,1))+skeb_vwts(k,2)*skebv_save(blk,:,skeb_vpts(k,2)) + 1 +Warning: Legacy Extension: REAL array index at (1) +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:470:30: + + integer i,j,k + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:471:28: + + integer l,lan,lat + 1 +Warning: Unused variable ‘l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:410:21: + + integer nm,nn,ierr,arrlen,isize + 1 +Warning: Unused variable ‘ierr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:339:30: + + integer i,j,k + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:340:28: + + integer l,lan,lat + 1 +Warning: Unused variable ‘l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:199:38: + + real(kind=kind_dbl_prec) :: globalvar,globalvar0 + 1 +Warning: Unused variable ‘globalvar’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:199:49: + + real(kind=kind_dbl_prec) :: globalvar,globalvar0 + 1 +Warning: Unused variable ‘globalvar0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:198:46: + + integer kmsk0(lonf,gis_stochy%lats_node_a),i1,i2,j1 + 1 +Warning: Unused variable ‘i1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:198:49: + + integer kmsk0(lonf,gis_stochy%lats_node_a),i1,i2,j1 + 1 +Warning: Unused variable ‘i2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:191:23: + + integer i,j,l,lat,ierr,n,nn,k,nt + 1 +Warning: Unused variable ‘ierr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:198:52: + + integer kmsk0(lonf,gis_stochy%lats_node_a),i1,i2,j1 + 1 +Warning: Unused variable ‘j1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:191:14: + + integer i,j,l,lat,ierr,n,nn,k,nt + 1 +Warning: Unused variable ‘l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:191:33: + + integer i,j,l,lat,ierr,n,nn,k,nt + 1 +Warning: Unused variable ‘nt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:194:17: + + integer :: num2d + 1 +Warning: Unused variable ‘num2d’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:120:38: + + real(kind=kind_dbl_prec) :: globalvar,globalvar0 + 1 +Warning: Unused variable ‘globalvar’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:120:49: + + real(kind=kind_dbl_prec) :: globalvar,globalvar0 + 1 +Warning: Unused variable ‘globalvar0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:111:23: + + integer i,j,l,lat,ierr,n,nn,k,nt + 1 +Warning: Unused variable ‘ierr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:111:14: + + integer i,j,l,lat,ierr,n,nn,k,nt + 1 +Warning: Unused variable ‘l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:101:27: + + gis_stochy,Model,Grid,nblks,maxlen,pattern_3d) + 1 +Warning: Unused dummy argument ‘model’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:111:28: + + integer i,j,l,lat,ierr,n,nn,k,nt + 1 +Warning: Unused variable ‘nn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:111:33: + + integer i,j,l,lat,ierr,n,nn,k,nt + 1 +Warning: Unused variable ‘nt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:114:17: + + integer :: num2d + 1 +Warning: Unused variable ‘num2d’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:52:38: + + real(kind=kind_dbl_prec) :: globalvar,globalvar0 + 1 +Warning: Unused variable ‘globalvar’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:52:49: + + real(kind=kind_dbl_prec) :: globalvar,globalvar0 + 1 +Warning: Unused variable ‘globalvar0’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:43:23: + + integer i,j,l,lat,ierr,n,nn,k,nt + 1 +Warning: Unused variable ‘ierr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:43:30: + + integer i,j,l,lat,ierr,n,nn,k,nt + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:43:14: + + integer i,j,l,lat,ierr,n,nn,k,nt + 1 +Warning: Unused variable ‘l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:33:27: + + gis_stochy,Model,Grid,nblks,maxlen,pattern_2d) + 1 +Warning: Unused dummy argument ‘model’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:43:28: + + integer i,j,l,lat,ierr,n,nn,k,nt + 1 +Warning: Unused variable ‘nn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:43:33: + + integer i,j,l,lat,ierr,n,nn,k,nt + 1 +Warning: Unused variable ‘nt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/get_stochy_pattern.F90:46:17: + + integer :: num2d + 1 +Warning: Unused variable ‘num2d’ declared at (1) [-Wunused-variable] +[ 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 +[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/cellular_automata.f90:238:13: + + count4 = count - count_trunc + nf*ra + 1 +Warning: Possible change of value in conversion from INTEGER(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/cellular_automata.f90:59:55: + + real(kind=kind_phys) :: psum,csum,CAmean,sq_diff,CAstdv,count1,alpha + 1 +Warning: Unused variable ‘castdv’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/cellular_automata.f90:60:63: + + real(kind=kind_phys) :: Detmax(nca),Detmean(nca),phi,stdev,delt + 1 +Warning: Unused variable ‘delt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/cellular_automata.f90:60:48: + + real(kind=kind_phys) :: Detmax(nca),Detmean(nca),phi,stdev,delt + 1 +Warning: Unused variable ‘detmean’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/cellular_automata.f90:48:22: + + integer :: seed, ierr7,blk, ix, iix, count4,ih,jh + 1 +Warning: Unused variable ‘ierr7’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/cellular_automata.f90:48:35: + + integer :: seed, ierr7,blk, ix, iix, count4,ih,jh + 1 +Warning: Unused variable ‘iix’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/cellular_automata.f90:60:52: + + real(kind=kind_phys) :: Detmax(nca),Detmean(nca),phi,stdev,delt + 1 +Warning: Unused variable ‘phi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/cellular_automata.f90:48:15: + + integer :: seed, ierr7,blk, ix, iix, count4,ih,jh + 1 +Warning: Unused variable ‘seed’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/cellular_automata.f90:59:48: + + real(kind=kind_phys) :: psum,csum,CAmean,sq_diff,CAstdv,count1,alpha + 1 +Warning: Unused variable ‘sq_diff’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/cellular_automata.f90:60:58: + + real(kind=kind_phys) :: Detmax(nca),Detmean(nca),phi,stdev,delt + 1 +Warning: Unused variable ‘stdev’ declared at (1) [-Wunused-variable] +[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:211:16: + + integer j,ierr,i + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:211:14: + + integer j,ierr,i + 1 +Warning: Unused variable ‘ierr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:194:4: + + use stochy_data_mod, only : nshum,rpattern_shum,rpattern_sppt,nsppt,rpattern_skeb,nskeb,& + 1 +Warning: Unused module variable ‘inttyp’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:211:9: + + integer j,ierr,i + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:197:4: + + use stochy_resol_def , only : latg,lonf + 1 +Warning: Unused module variable ‘latg’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:197:4: + + use stochy_resol_def , only : latg,lonf + 1 +Warning: Unused module variable ‘lonf’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:199:4: + + use spectral_layout_mod,only:me,ompthreads + 1 +Warning: Unused module variable ‘me’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:194:4: + + use stochy_data_mod, only : nshum,rpattern_shum,rpattern_sppt,nsppt,rpattern_skeb,nskeb,& + 1 +Warning: Unused module variable ‘rad2deg’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:194:4: + + use stochy_data_mod, only : nshum,rpattern_shum,rpattern_sppt,nsppt,rpattern_skeb,nskeb,& + 1 +Warning: Unused module variable ‘rnlat’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:194:4: + + use stochy_data_mod, only : nshum,rpattern_shum,rpattern_sppt,nsppt,rpattern_skeb,nskeb,& + 1 +Warning: Unused module variable ‘wlon’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:34:35: + + integer :: k,kflip,latghf,nodes,blk,k2 + 1 +Warning: Unused variable ‘blk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:34:18: + + integer :: k,kflip,latghf,nodes,blk,k2 + 1 +Warning: Unused variable ‘kflip’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:14:4: + + use stochy_data_mod, only : nshum,rpattern_shum,init_stochdata,rpattern_sppt,nsppt,rpattern_skeb,nskeb,gg_lats,gg_lons,& + 1 +Warning: Unused module variable ‘nshum’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:14:4: + + use stochy_data_mod, only : nshum,rpattern_shum,init_stochdata,rpattern_sppt,nsppt,rpattern_skeb,nskeb,gg_lats,gg_lons,& + 1 +Warning: Unused module variable ‘nskeb’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:14:4: + + use stochy_data_mod, only : nshum,rpattern_shum,init_stochdata,rpattern_sppt,nsppt,rpattern_skeb,nskeb,gg_lats,gg_lons,& + 1 +Warning: Unused module variable ‘nsppt’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:35:17: + + character*2::proc + 1 +Warning: Unused variable ‘proc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:32:26: + + real*8 :: PRSI(Model%levs),PRSL(Model%levs),dx + 1 +Warning: Unused variable ‘prsi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:32:43: + + real*8 :: PRSI(Model%levs),PRSL(Model%levs),dx + 1 +Warning: Unused variable ‘prsl’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:14:4: + + use stochy_data_mod, only : nshum,rpattern_shum,init_stochdata,rpattern_sppt,nsppt,rpattern_skeb,nskeb,gg_lats,gg_lons,& + 1 +Warning: Unused module variable ‘rpattern_shum’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:14:4: + + use stochy_data_mod, only : nshum,rpattern_shum,init_stochdata,rpattern_sppt,nsppt,rpattern_skeb,nskeb,gg_lats,gg_lons,& + 1 +Warning: Unused module variable ‘rpattern_skeb’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:14:4: + + use stochy_data_mod, only : nshum,rpattern_shum,init_stochdata,rpattern_sppt,nsppt,rpattern_skeb,nskeb,gg_lats,gg_lons,& + 1 +Warning: Unused module variable ‘rpattern_sppt’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:298:16: + + integer j,ierr,i + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:298:14: + + integer j,ierr,i + 1 +Warning: Unused variable ‘ierr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:284:4: + + use stochy_data_mod, only : rad2deg,INTTYP,wlon,rnlat,gis_stochy, rpattern_sfc,npsfc ! mg, sfc-perts + 1 +Warning: Unused module variable ‘inttyp’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:298:9: + + integer j,ierr,i + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:286:4: + + use stochy_resol_def , only : latg,lonf + 1 +Warning: Unused module variable ‘latg’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:286:4: + + use stochy_resol_def , only : latg,lonf + 1 +Warning: Unused module variable ‘lonf’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:284:4: + + use stochy_data_mod, only : rad2deg,INTTYP,wlon,rnlat,gis_stochy, rpattern_sfc,npsfc ! mg, sfc-perts + 1 +Warning: Unused module variable ‘rad2deg’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:284:4: + + use stochy_data_mod, only : rad2deg,INTTYP,wlon,rnlat,gis_stochy, rpattern_sfc,npsfc ! mg, sfc-perts + 1 +Warning: Unused module variable ‘rnlat’ which has been explicitly imported at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:300:22: + + character*120 :: sfile + 1 +Warning: Unused variable ‘sfile’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:301:22: + + character*6 :: STRFH + 1 +Warning: Unused variable ‘strfh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/stochastic_physics/stochastic_physics.F90:284:4: + + use stochy_data_mod, only : rad2deg,INTTYP,wlon,rnlat,gis_stochy, rpattern_sfc,npsfc ! mg, sfc-perts + 1 +Warning: Unused module variable ‘wlon’ which has been explicitly imported at (1) [-Wunused-variable] +[ 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:1530:3: + + 101 format("CHECKSUM::",A16,a,'%',a," = ",Z20) + 1 +Warning: Label 101 at (1) defined but not used [-Wunused-label] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:715:15: + + maxhf = fhmaxhf / fhouthf + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:716:15: + + maxh = maxhf + (fhmax-fhmaxhf) / fhout + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:725:15: + + maxh = fhmax / fhout + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:187:57: + + type(DYCORE_diag_type) :: DYCORE_Diag(25) + 1 +Warning: Unused PRIVATE module variable ‘dycore_diag’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:2656:39: + + type(ESMF_StaggerLoc) :: staggerloc + 1 +Warning: Unused variable ‘staggerloc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:1910:33: + + subroutine setup_exportdata (rc) + 1 +Warning: Dummy argument ‘rc’ at (1) was declared INTENT(OUT) but was not set [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:1574:66: + + real(kind=ESMF_KIND_R4), dimension(:,:), pointer :: datar42d + 1 +Warning: Unused variable ‘datar42d’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:1527:16: + + integer :: n, outunit + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:947:16: + + integer :: idx + 1 +Warning: Unused variable ‘idx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:820:46: + + subroutine atmos_model_exchange_phase_2 (Atmos, rc) + 1 +Warning: Unused dummy argument ‘atmos’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:784:46: + + subroutine atmos_model_exchange_phase_1 (Atmos, rc) + 1 +Warning: Unused dummy argument ‘atmos’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:450:16: + + integer :: blk, ibs, ibe, jbs, jbe + 1 +Warning: Unused variable ‘blk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:453:33: + + character(len=80) :: control + 1 +Warning: Unused variable ‘control’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:445:50: + + integer :: mlon, mlat, nlon, nlat, nlev, sec, dt + 1 +Warning: Unused variable ‘dt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:456:48: + + logical :: p_hydro, hydro, fexist + 1 +Warning: Unused variable ‘fexist’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:454:34: + + character(len=64) :: filename, filename2, pelist_name + 1 +Warning: Unused variable ‘filename’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:454:45: + + character(len=64) :: filename, filename2, pelist_name + 1 +Warning: Unused variable ‘filename2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:450:26: + + integer :: blk, ibs, ibe, jbs, jbe + 1 +Warning: Unused variable ‘ibe’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:450:21: + + integer :: blk, ibs, ibe, jbs, jbe + 1 +Warning: Unused variable ‘ibs’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:447:16: + + integer :: idx, tile_num + 1 +Warning: Unused variable ‘idx’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:449:21: + + integer :: isd, ied, jsd, jed + 1 +Warning: Unused variable ‘ied’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:449:16: + + integer :: isd, ied, jsd, jed + 1 +Warning: Unused variable ‘isd’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:444:41: + + integer :: unit, ntdiag, ntfamily, i, j, k + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:450:36: + + integer :: blk, ibs, ibe, jbs, jbe + 1 +Warning: Unused variable ‘jbe’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:450:31: + + integer :: blk, ibs, ibe, jbs, jbe + 1 +Warning: Unused variable ‘jbs’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:449:31: + + integer :: isd, ied, jsd, jed + 1 +Warning: Unused variable ‘jed’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:449:26: + + integer :: isd, ied, jsd, jed + 1 +Warning: Unused variable ‘jsd’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:444:44: + + integer :: unit, ntdiag, ntfamily, i, j, k + 1 +Warning: Unused variable ‘k’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:444:25: + + integer :: unit, ntdiag, ntfamily, i, j, k + 1 +Warning: Unused variable ‘ntdiag’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:444:35: + + integer :: unit, ntdiag, ntfamily, i, j, k + 1 +Warning: Unused variable ‘ntfamily’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:452:51: + + real, allocatable :: q(:,:,:,:), p_half(:,:,:) + 1 +Warning: Unused variable ‘p_half’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:454:58: + + character(len=64) :: filename, filename2, pelist_name + 1 +Warning: Unused variable ‘pelist_name’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:452:36: + + real, allocatable :: q(:,:,:,:), p_half(:,:,:) + 1 +Warning: Unused variable ‘q’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:455:30: + + character(len=132) :: text + 1 +Warning: Unused variable ‘text’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:1523:0: + + subroutine atmos_data_type_chksum(id, timestep, atm) + +Warning: ‘atmos_data_type_chksum’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/atmos_model.F90:1553:0: + + subroutine dealloc_atmos_data_type (Atmos) + +Warning: ‘dealloc_atmos_data_type’ defined but not used [-Wunused-function] +[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/module_fcst_grid_comp.F90:766:11: + + na = NTIMESTEP_ESMF + 1 +Warning: Possible change of value in conversion from INTEGER(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/module_fcst_grid_comp.F90:694:11: + + na = NTIMESTEP_ESMF + 1 +Warning: Possible change of value in conversion from INTEGER(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/module_fcst_grid_comp.F90:575:35: + + name_FB = filename_base(i) + 1 +Warning: CHARACTER expression will be truncated in assignment (128/255) at (1) [-Wcharacter-truncation] +mpif.h:561:54: + +Warning: Unused PRIVATE module variable ‘mpi_statuses_ignore’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/module_fcst_grid_comp.F90:807:69: + + subroutine fcst_finalize(fcst_comp, importState, exportState,clock,rc) + 1 +Warning: Unused dummy argument ‘clock’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/module_fcst_grid_comp.F90:807:63: + + subroutine fcst_finalize(fcst_comp, importState, exportState,clock,rc) + 1 +Warning: Unused dummy argument ‘exportstate’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/module_fcst_grid_comp.F90:807:50: + + subroutine fcst_finalize(fcst_comp, importState, exportState,clock,rc) + 1 +Warning: Unused dummy argument ‘importstate’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/module_fcst_grid_comp.F90:743:44: + + type(ESMF_Time) :: currtime + 1 +Warning: Unused variable ‘currtime’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/module_fcst_grid_comp.F90:740:58: + + integer :: i,j, mype, na, date(6) + 1 +Warning: Unused variable ‘date’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/module_fcst_grid_comp.F90:726:66: + + subroutine fcst_run_phase_2(fcst_comp, importState, exportState,clock,rc) + 1 +Warning: Unused dummy argument ‘exportstate’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/module_fcst_grid_comp.F90:740:37: + + integer :: i,j, mype, na, date(6) + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/module_fcst_grid_comp.F90:726:53: + + subroutine fcst_run_phase_2(fcst_comp, importState, exportState,clock,rc) + 1 +Warning: Unused dummy argument ‘importstate’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/module_fcst_grid_comp.F90:740:39: + + integer :: i,j, mype, na, date(6) + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/module_fcst_grid_comp.F90:671:44: + + type(ESMF_Time) :: currtime + 1 +Warning: Unused variable ‘currtime’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/module_fcst_grid_comp.F90:654:66: + + subroutine fcst_run_phase_1(fcst_comp, importState, exportState,clock,rc) + 1 +Warning: Unused dummy argument ‘exportstate’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/module_fcst_grid_comp.F90:668:37: + + integer :: i,j, mype, na, date(6) + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/module_fcst_grid_comp.F90:654:53: + + subroutine fcst_run_phase_1(fcst_comp, importState, exportState,clock,rc) + 1 +Warning: Unused dummy argument ‘importstate’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/module_fcst_grid_comp.F90:668:39: + + integer :: i,j, mype, na, date(6) + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/module_fcst_grid_comp.F90:673:45: + + character(len=64) :: timestamp + 1 +Warning: Unused variable ‘timestamp’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/module_fcst_grid_comp.F90:178:48: + + type(ESMF_Config) :: cf + 1 +Warning: Unused variable ‘cf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/module_fcst_grid_comp.F90:189:23: + + character(3) cfhour + 1 +Warning: Unused variable ‘cfhour’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/module_fcst_grid_comp.F90:185:51: + + logical,save :: first=.true. + 1 +Warning: Unused variable ‘first’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/module_fcst_grid_comp.F90:193:62: + + real, allocatable, dimension(:,:) :: glon_bnd, glat_bnd + 1 +Warning: Unused variable ‘glat_bnd’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/module_fcst_grid_comp.F90:193:52: + + real, allocatable, dimension(:,:) :: glon_bnd, glat_bnd + 1 +Warning: Unused variable ‘glon_bnd’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/module_fcst_grid_comp.F90:158:51: + + subroutine fcst_initialize(fcst_comp, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘importstate’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/module_fcst_grid_comp.F90:187:38: + + integer :: initClock, unit, nfhour + 1 +Warning: Unused variable ‘nfhour’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/module_fcst_grid_comp.F90:177:70: + + type(ESMF_TimeInterval) :: RunDuration, TimeElapsed + 1 +Warning: Unused variable ‘timeelapsed’ declared at (1) [-Wunused-variable] +[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o +[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/time_utils.F90:112:0: + + return ! bail out + +Warning: control reaches end of non-void function [-Wreturn-type] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/time_utils.F90:91:0: + + return ! bail out + +Warning: control reaches end of non-void function [-Wreturn-type] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:376:14: + + imo = (lon2-lon1)/dlon + 1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:377:14: + + jmo = (lat2-lat1)/dlat + 1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:393:14: + + imo = (lon2-lon1)/dlon + 1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:394:14: + + jmo = (lat2-lat1)/dlat + 1 + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:753:16: + + nhf = (currtime-starttime)/output_interval_hf + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:769:16: + + nrg = (currtime-starttime-output_hfmax)/output_interval + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:773:14: + + nrg = (currtime-starttime)/output_interval + 1 +Warning: Possible change of value in conversion from REAL(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1540:44: + + integer :: i, unit, date(6), mype, urc + 1 +Warning: Unused variable ‘date’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1540:35: + + integer :: i, unit, date(6), mype, urc + 1 +Warning: Unused variable ‘unit’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1253:51: + + type(ESMF_Clock) :: clock + 1 +Warning: Unused variable ‘clock’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1267:55: + + real(kind=ESMF_KIND_R4), pointer :: dataPtr(:,:,:), dataPtr2d(:,:) + 1 +Warning: Unused variable ‘dataptr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1267:71: + + real(kind=ESMF_KIND_R4), pointer :: dataPtr(:,:,:), dataPtr2d(:,:) + 1 +Warning: Unused variable ‘dataptr2d’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1266:53: + + integer :: mype,date(6), fieldcount, fcst_nfld + 1 +Warning: Unused variable ‘date’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1252:70: + + type(ESMF_State) :: importState, exportState + 1 +Warning: Unused variable ‘exportstate’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1266:76: + + integer :: mype,date(6), fieldcount, fcst_nfld + 1 +Warning: Unused variable ‘fcst_nfld’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1268:34: + + character(64) :: fcstbdl_name + 1 +Warning: Unused variable ‘fcstbdl_name’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1266:65: + + integer :: mype,date(6), fieldcount, fcst_nfld + 1 +Warning: Unused variable ‘fieldcount’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1252:57: + + type(ESMF_State) :: importState, exportState + 1 +Warning: Unused variable ‘importstate’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1263:44: + + character(240) :: msgString + 1 +Warning: Unused variable ‘msgstring’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1258:56: + + integer(ESMF_KIND_I8) :: n_interval, time_elapsed_sec + 1 +Warning: Unused variable ‘n_interval’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1258:74: + + integer(ESMF_KIND_I8) :: n_interval, time_elapsed_sec + 1 +Warning: Unused variable ‘time_elapsed_sec’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1270:37: + + real(kind=8) :: timewri, timewr, timerhi, timerh + 1 +Warning: Unused variable ‘timewr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1151:55: + + real(kind=ESMF_KIND_R4), pointer :: dataPtr(:,:,:), dataPtr2d(:,:) + 1 +Warning: Unused variable ‘dataptr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1151:71: + + real(kind=ESMF_KIND_R4), pointer :: dataPtr(:,:,:), dataPtr2d(:,:) + 1 +Warning: Unused variable ‘dataptr2d’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1136:70: + + type(ESMF_State) :: importState, exportState + 1 +Warning: Unused variable ‘exportstate’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1150:76: + + integer :: mype,date(6), fieldcount, fcst_nfld + 1 +Warning: Unused variable ‘fcst_nfld’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1152:33: + + character(64) :: fcstbdl_name + 1 +Warning: Unused variable ‘fcstbdl_name’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1150:65: + + integer :: mype,date(6), fieldcount, fcst_nfld + 1 +Warning: Unused variable ‘fieldcount’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1144:20: + + integer :: na, i, urc + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1136:57: + + type(ESMF_State) :: importState, exportState + 1 +Warning: Unused variable ‘importstate’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1145:21: + + logical :: lalarm, reconcileFlag + 1 +Warning: Unused variable ‘lalarm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1153:30: + + real(kind=8) :: MPI_Wtime + 1 +Warning: Unused variable ‘mpi_wtime’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1142:56: + + integer(ESMF_KIND_I8) :: n_interval, time_elapsed_sec + 1 +Warning: Unused variable ‘n_interval’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1144:17: + + integer :: na, i, urc + 1 +Warning: Unused variable ‘na’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1141:58: + + type(ESMF_TimeInterval) :: time_elapsed + 1 +Warning: Unused variable ‘time_elapsed’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1142:74: + + integer(ESMF_KIND_I8) :: n_interval, time_elapsed_sec + 1 +Warning: Unused variable ‘time_elapsed_sec’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1154:53: + + real(kind=8) :: timewri, timewr, timerhi, timerh + 1 +Warning: Unused variable ‘timerh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1154:45: + + real(kind=8) :: timewri, timewr, timerhi, timerh + 1 +Warning: Unused variable ‘timerhi’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1154:36: + + real(kind=8) :: timewri, timewr, timerhi, timerh + 1 +Warning: Unused variable ‘timewr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:1154:28: + + real(kind=8) :: timewri, timewr, timerhi, timerh + 1 +Warning: Unused variable ‘timewri’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:908:55: + + real(kind=ESMF_KIND_R4), pointer :: dataPtr(:,:,:), dataPtr2d(:,:) + 1 +Warning: Unused variable ‘dataptr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:908:71: + + real(kind=ESMF_KIND_R4), pointer :: dataPtr(:,:,:), dataPtr2d(:,:) + 1 +Warning: Unused variable ‘dataptr2d’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:907:50: + + integer :: mype,date(6), fieldcount, fcst_nfld + 1 +Warning: Unused variable ‘fcst_nfld’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:909:34: + + character(64) :: fcstbdl_name + 1 +Warning: Unused variable ‘fcstbdl_name’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:907:39: + + integer :: mype,date(6), fieldcount, fcst_nfld + 1 +Warning: Unused variable ‘fieldcount’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:899:56: + + integer(ESMF_KIND_I8) :: n_interval, time_elapsed_sec + 1 +Warning: Unused variable ‘n_interval’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:899:74: + + integer(ESMF_KIND_I8) :: n_interval, time_elapsed_sec + 1 +Warning: Unused variable ‘time_elapsed_sec’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:911:45: + + real(kind=8) :: timeri, timewri, timewr, timerhi, timerh + 1 +Warning: Unused variable ‘timewr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:847:69: + + subroutine InitializeRealize(gcomp, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘clock’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:847:36: + + subroutine InitializeRealize(gcomp, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘gcomp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:855:16: + + integer :: n + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:229:85: + + type(ESMF_Time) :: alarm_output_hf_stop, alarm_output_stop + 1 +Warning: Unused variable ‘alarm_output_stop’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:252:53: + + real(kind=8) :: MPI_Wtime, timewri, timeis,timeie,timerhs, timerhe + 1 +Warning: Unused variable ‘timeie’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:252:70: + + real(kind=8) :: MPI_Wtime, timewri, timeis,timeie,timerhs, timerhe + 1 +Warning: Unused variable ‘timerhe’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:244:51: + + logical,dimension(:), allocatable :: wrtpe + 1 +Warning: Unused variable ‘wrtpe’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:182:64: + + subroutine InitializeP0(gcomp, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘clock’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:182:57: + + subroutine InitializeP0(gcomp, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘exportstate’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/FV3/fv3_cap.F90:182:44: + + subroutine InitializeP0(gcomp, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘importstate’ at (1) [-Wunused-dummy-argument] +[ 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90:194:54: + + SUBROUTINE Cpl_Finalize(CplENS, impENS, expENS, clock, rcfinal) + 1 +Warning: Unused dummy argument ‘clock’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90:194:31: + + SUBROUTINE Cpl_Finalize(CplENS, impENS, expENS, clock, rcfinal) + 1 +Warning: Unused dummy argument ‘cplens’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90:194:47: + + SUBROUTINE Cpl_Finalize(CplENS, impENS, expENS, clock, rcfinal) + 1 +Warning: Unused dummy argument ‘expens’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90:194:39: + + SUBROUTINE Cpl_Finalize(CplENS, impENS, expENS, clock, rcfinal) + 1 +Warning: Unused dummy argument ‘impens’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90:154:49: + + SUBROUTINE Cpl_Run(CplENS, impENS, expENS, clock, rcfinal) + 1 +Warning: Unused dummy argument ‘clock’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90:154:26: + + SUBROUTINE Cpl_Run(CplENS, impENS, expENS, clock, rcfinal) + 1 +Warning: Unused dummy argument ‘cplens’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90:154:42: + + SUBROUTINE Cpl_Run(CplENS, impENS, expENS, clock, rcfinal) + 1 +Warning: Unused dummy argument ‘expens’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90:154:34: + + SUBROUTINE Cpl_Run(CplENS, impENS, expENS, clock, rcfinal) + 1 +Warning: Unused dummy argument ‘impens’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90:110:56: + + SUBROUTINE Cpl_Initialize(CplENS, impENS, expENS, clock, rcfinal) + 1 +Warning: Unused dummy argument ‘clock’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90:110:33: + + SUBROUTINE Cpl_Initialize(CplENS, impENS, expENS, clock, rcfinal) + 1 +Warning: Unused dummy argument ‘cplens’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90:110:49: + + SUBROUTINE Cpl_Initialize(CplENS, impENS, expENS, clock, rcfinal) + 1 +Warning: Unused dummy argument ‘expens’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90:110:41: + + SUBROUTINE Cpl_Initialize(CplENS, impENS, expENS, clock, rcfinal) + 1 +Warning: Unused dummy argument ‘impens’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_methods.F90:142:20: + + real(R8) :: bh ! exchange coef funct for interpolation + 1 +Warning: Unused variable ‘bh’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_methods.F90:141:20: + + real(R8) :: bn ! exchange coef funct for interpolation + 1 +Warning: Unused variable ‘bn’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_methods.F90:63:45: + + & qbot ,rbot ,tbot ,us ,vs , & + 1 +Warning: Unused dummy argument ‘tbot’ at (1) [-Wunused-dummy-argument] +[ 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:252:1: + + ungriddedLBound=(/1/), ungriddedUBound=(/levels/), & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:253:1: + + name=fieldNameList(i), rc=rc) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:333:7: + + minIndexPTile=minIndices, maxIndexPTile=maxIndices, rc=rc) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:345:1: + + rc=rc) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:347:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:348:13: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:349:13: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:347:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:348:13: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:349:13: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:347:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:348:13: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:349:13: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:347:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:348:13: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:349:13: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:351:14: + + rc=rc) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:353:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:354:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:355:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:353:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:354:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:355:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:353:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:354:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:355:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:353:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:354:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:355:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:358:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:359:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:360:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:358:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:359:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:360:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:358:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:359:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:360:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:358:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:359:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:360:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:368:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:369:1: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:368:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:369:1: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:368:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:369:1: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:368:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:369:1: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:374:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:375:1: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:374:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:375:1: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:374:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:375:1: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:374:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:375:1: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:432:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:433:1: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:432:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:433:1: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:432:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:433:1: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:432:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:433:1: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:438:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:439:1: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:438:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:439:1: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:438:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:439:1: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:438:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:439:1: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:455:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:456:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:457:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:455:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:456:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:457:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:455:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:456:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:457:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:455:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:456:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:457:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:461:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:462:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:463:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:461:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:462:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:463:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:461:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:462:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:463:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:461:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:462:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:463:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:466:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:467:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:468:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:466:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:467:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:468:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:466:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:467:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:468:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:466:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:467:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:468:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:475:8: + + unmappedaction =ESMF_UNMAPPEDACTION_IGNORE, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:476:1: + + regridmethod = ESMF_REGRIDMETHOD_BILINEAR, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:477:1: + + polemethod = ESMF_POLEMETHOD_NONE, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:479:1: + + routehandle = is%wrap%routehandle, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:480:1: + + rc=rc) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:482:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:483:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:484:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:482:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:483:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:484:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:482:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:483:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:484:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:482:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:483:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:484:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:490:5: + + reduceflag=ESMF_REDUCE_MAX, rootPet=0, rc=rc) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:492:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:493:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:494:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:492:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:493:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:494:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:492:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:493:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:494:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:492:13: + + line=__LINE__, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:493:9: + + file=__FILE__)) & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:494:9: + + return ! bail out + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:706:3: + + wamlat(wamdims(1), wamdims(2))) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:789:5: + + startlevel = i-1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:790:1: + + exit + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:848:8: + + nodeIds(count1)= j+wamdims(1)*(ind-1)+wamdims(1)*wamdims(2)*(k-1) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:850:1: + + lon = wamlon(j,ind) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:862:8: + + do j=1, numPerRow(ind+1) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:865:1: + + if (PetTable(ind+1) == PetNo) then + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:866:1: + + print *, PetNo, 'wrong neighbor ', count1, PetTable(ind+1) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:869:1: + + lon = wamlon(j,ind+1) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:877:1: + + endif + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:886:8: + + nodeIds(count1)= j+wamdims(1)*(ind-1)+wamdims(1)*wamdims(2)*(k-1) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:888:1: + + lon = wamlon(j,ind) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:956:1: + + ind = i + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:992:8: + + elementIds(count1)=startid+count1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:993:1: + + elementConn(count8)= base+j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:994:1: + + elementConn(count8+1)=base+j+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:995:1: + + elementConn(count8+2)=base+numPerRow(ind)-j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:996:1: + + elementConn(count8+3)=base+numPerRow(ind)-j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:997:1: + + elementConn(count8+4)=base+totalnodes2d+j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:998:1: + + elementConn(count8+5)=base+totalnodes2d+j+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:999:1: + + elementConn(count8+6)=base+totalnodes2d+numPerRow(ind)-j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1000:1: + + elementConn(count8+7)=base+totalnodes2d+j+numPerRow(ind)-j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1001:1: + + count1=count1+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1002:1: + + count8=count8+8 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1006:8: + + elementIds(count1)=startid+count1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1007:1: + + elementConn(count8)= base+j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1008:1: + + elementConn(count8+1)=base+j+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1009:1: + + elementConn(count8+2)=base+numPerRow(ind)-j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1010:1: + + elementConn(count8+3)=base+numPerRow(ind)-j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1011:1: + + elementConn(count8+4)=base+totalnodes2d+j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1012:1: + + elementConn(count8+5)=base+totalnodes2d+j+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1013:1: + + elementConn(count8+6)=base+totalnodes2d+numPerRow(ind)-j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1014:1: + + elementConn(count8+7)=base+totalnodes2d+j+numPerRow(ind)-j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1015:1: + + count1=count1+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1016:1: + + count8=count8+8 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1017:15: + + enddo + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1024:8: + + elementIds(count1)=startid+count1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1025:1: + + elementConn(count8)= base+j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1026:1: + + elementConn(count8+1)=base+j+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1027:1: + + elementConn(count8+2)=base+numPerRow(ind)+j+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1028:1: + + elementConn(count8+3)=base+numPerRow(ind)+j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1029:1: + + elementConn(count8+4)=base+totalnodes2d+j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1030:1: + + elementConn(count8+5)=base+totalnodes2d+j+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1031:1: + + elementConn(count8+6)=base+numPerRow(ind)+totalnodes2d+j+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1032:1: + + elementConn(count8+7)=base+numPerRow(ind)+totalnodes2d+j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1033:1: + + count1=count1+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1034:1: + + count8=count8+8 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1037:8: + + elementIds(count1)=startid+count1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1038:1: + + elementConn(count8)= base+j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1039:1: + + elementConn(count8+1)=base+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1040:1: + + elementConn(count8+2)=base+numPerRow(ind)+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1041:1: + + elementConn(count8+3)=base+numPerRow(ind)+j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1042:1: + + elementConn(count8+4)=base+totalnodes2d+j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1043:1: + + elementConn(count8+5)=base+totalnodes2d+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1044:1: + + elementConn(count8+6)=base+numPerRow(ind)+totalnodes2d+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1045:1: + + elementConn(count8+7)=base+numPerRow(ind)+totalnodes2d+j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1046:1: + + count1=count1+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1047:1: + + count8=count8+8 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1050:1: + + diff=numPerRow(ind)-numPerRow(ind+1) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1051:1: + + if (diff > 0) then + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1054:1: + + interval = real(numPerRow(ind))/(diff+1) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1055:1: + + jj=1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1058:1: + + if (j > trigs*interval) then + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1063:1: + + elementConn(count8)= base+j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1064:1: + + elementConn(count8+1)=base+j+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1065:1: + + elementConn(count8+2)=base+numPerRow(ind)+jj + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1066:1: + + elementConn(count8+3)=base+numPerRow(ind)+jj + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1067:1: + + elementConn(count8+4)=base+totalnodes2d+j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1068:1: + + elementConn(count8+5)=base+totalnodes2d+j+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1069:1: + + elementConn(count8+6)=base+numPerRow(ind)+totalnodes2d+jj + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1070:1: + + elementConn(count8+7)=base+numPerRow(ind)+totalnodes2d+jj + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1073:1: + + elementConn(count8)= base+j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1074:1: + + elementConn(count8+1)=base+j+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1075:1: + + elementConn(count8+2)=base+numPerRow(ind)+jj+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1076:1: + + elementConn(count8+3)=base+numPerRow(ind)+jj + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1077:1: + + elementConn(count8+4)=base+totalnodes2d+j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1078:1: + + elementConn(count8+5)=base+totalnodes2d+j+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1079:1: + + elementConn(count8+6)=base+numPerRow(ind)+totalnodes2d+jj+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1080:1: + + elementConn(count8+7)=base+numPerRow(ind)+totalnodes2d+jj + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1081:1: + + jj=jj+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1082:1: + + endif + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1083:1: + + count1=count1+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1084:1: + + count8=count8+8 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1088:1: + + elementConn(count8)= base+j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1089:1: + + elementConn(count8+1)=base+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1090:1: + + elementConn(count8+2)=base+numPerRow(ind)+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1091:1: + + elementConn(count8+3)=base+numPerRow(ind)+jj + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1092:1: + + elementConn(count8+4)=base+totalnodes2d+j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1093:1: + + elementConn(count8+5)=base+totalnodes2d+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1094:1: + + elementConn(count8+6)=base+numPerRow(ind)+totalnodes2d+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1095:1: + + elementConn(count8+7)=base+numPerRow(ind)+totalnodes2d+jj + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1096:3: + + count1=count1+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1097:1: + + count8=count8+8 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1098:1: + + if (k==1 .and. (jj /= numPerRow(ind+1))) then + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1099:1: + + print *, PetNo, 'Upper row index mismatch', ind, jj, numPerRow(ind+1) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1104:1: + + interval = real(numPerRow(ind+1))/(-1*diff+1) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1105:1: + + jj=1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1106:1: + + trigs=1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1108:1: + + if (j > trigs*interval) then + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1109:1: + + trigs = trigs+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1112:1: + + elementConn(count8)= base+jj + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1113:1: + + elementConn(count8+1)=base+jj + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1114:1: + + elementConn(count8+2)=base+numPerRow(ind)+j+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1115:1: + + elementConn(count8+3)=base+numPerRow(ind)+j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1116:1: + + elementConn(count8+4)=base+totalnodes2d+jj + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1117:1: + + elementConn(count8+5)=base+totalnodes2d+jj + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1118:1: + + elementConn(count8+6)=base+numPerRow(ind)+totalnodes2d+j+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1119:1: + + elementConn(count8+7)=base+numPerRow(ind)+totalnodes2d+j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1122:1: + + elementConn(count8)= base+jj + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1123:1: + + elementConn(count8+1)=base+jj+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1124:1: + + elementConn(count8+2)=base+numPerRow(ind)+j+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1125:1: + + elementConn(count8+3)=base+numPerRow(ind)+j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1126:1: + + elementConn(count8+4)=base+totalnodes2d+jj + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1127:1: + + elementConn(count8+5)=base+totalnodes2d+jj+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1128:1: + + elementConn(count8+6)=base+numPerRow(ind)+totalnodes2d+j+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1129:1: + + elementConn(count8+7)=base+numPerRow(ind)+totalnodes2d+j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1130:1: + + jj=jj+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1131:1: + + endif + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1132:1: + + count1=count1+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1133:1: + + count8=count8+8 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1136:8: + + elementIds(count1)=startid+count1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1137:1: + + elementConn(count8)= base+jj + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1138:1: + + elementConn(count8+1)=base+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1139:1: + + elementConn(count8+2)=base+numPerRow(ind)+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1140:1: + + elementConn(count8+3)=base+numPerRow(ind)+j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1141:1: + + elementConn(count8+4)=base+totalnodes2d+jj + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1142:1: + + elementConn(count8+5)=base+totalnodes2d+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1143:1: + + elementConn(count8+6)=base+numPerRow(ind)+totalnodes2d+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1144:1: + + elementConn(count8+7)=base+numPerRow(ind)+totalnodes2d+j + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1145:2: + + count1=count1+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1146:1: + + count8=count8+8 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1147:1: + + if (k==1 .and. (jj /= numPerRow(ind))) then + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1148:1: + + print *, PetNo, 'Lower row index mismatch', ind, jj, numPerRow(ind) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1151:22: + + endif + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1306:1: + + field=datafield, rc=rc) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1307:3: + + if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1311:1: + + call ESMF_FieldGet(datafield, farrayPtr=varbuf, computationalLbound=lbnd, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1312:8: + + computationalUbound=ubnd, rc=rc) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1313:3: + + if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1317:1: + + localnodes=ubnd(1)-lbnd(1)+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1331:1: + + wamdata(:,:)=1.0 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1333:3: + + do i=1,localnodes + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1337:1: + + kk=kk+1 + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1339:1: + + if (kk>inlevels) then + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1342:2: + + wamdata(i,l-startlevel+1)=varbuf(i,kk-1) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1344:1: + + exit + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1348:1: + + varbuf(i,kk-1)*(hgtbuf(i,kk)-wamhgt(k)))/ & + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1349:1: + + (hgtbuf(i,kk)-hgtbuf(i,kk-1)) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1351:1: + + wamdata(i,k-startlevel+1)=varbuf(i,kk) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1358:1: + + ESMF_INDEX_DELOCAL, datacopyflag=ESMF_DATACOPY_VALUE, meshloc=ESMF_MESHLOC_NODE, rc=rc) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1366:6: + + field=ipefield, rc=rc) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1373:1: + + zeroregion=ESMF_REGION_TOTAL, rc=rc) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1449:5: + + trim(errmsg),trim(nf90_strerror(ncStatus)) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_NEMS_UTILS.F90:21:0: + + subroutine err_msg_int(rc1,msg,val,rcfinal) + +Warning: ‘err_msg_int’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_NEMS_UTILS.F90:38:0: + + subroutine err_msg_val(rc1,msg,val,rcfinal) + +Warning: ‘err_msg_val’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_NEMS_UTILS.F90:55:0: + + subroutine err_msg_var(rc1,msg,chr,rcfinal) + +Warning: ‘err_msg_var’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_NEMS_UTILS.F90:88:0: + + subroutine err_msg_final(rcfinal,msg,rc) + +Warning: ‘err_msg_final’ defined but not used [-Wunused-function] +[ 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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1054:14: + + interval = real(numPerRow(ind))/(diff+1) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1104:14: + + interval = real(numPerRow(ind+1))/(-1*diff+1) + 1 +Warning: Possible change of value in conversion from REAL(8) to REAL(4) at (1) [-Wconversion] +mpif.h:561:54: + +Warning: Unused PRIVATE module variable ‘mpi_statuses_ignore’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1521:21: + + integer :: localrc + 1 +Warning: Unused variable ‘localrc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1499:21: + + integer :: localrc + 1 +Warning: Unused variable ‘localrc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1396:21: + + type(ESMF_VM) :: vm + 1 +Warning: Unused variable ‘vm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1215:27: + + type(ESMF_Array) :: array + 1 +Warning: Unused variable ‘array’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1214:35: + + type(ESMF_Arrayspec) :: arrayspec + 1 +Warning: Unused variable ‘arrayspec’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1223:47: + + integer :: i, ii, j, jj, j1, k, kk, l, count1 + 1 +Warning: Unused variable ‘count1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1209:27: + + integer :: varid, data2id + 1 +Warning: Unused variable ‘data2id’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1206:43: + + real(ESMF_KIND_R8), pointer :: databuf(:), dstdata(:), wamhgt(:) + 1 +Warning: Unused variable ‘databuf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1217:64: + + real(ESMF_KIND_R8) :: maxerror, minerror, totalerrors, deg2rad + 1 +Warning: Unused variable ‘deg2rad’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1219:31: + + real(ESMF_KIND_R8) :: differr + 1 +Warning: Unused variable ‘differr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1210:29: + + integer :: ndims, dimids(3), wamdims(3) + 1 +Warning: Unused variable ‘dimids’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1216:33: + + type(ESMF_DistGrid) :: distgrid + 1 +Warning: Unused variable ‘distgrid’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1206:55: + + real(ESMF_KIND_R8), pointer :: databuf(:), dstdata(:), wamhgt(:) + 1 +Warning: Unused variable ‘dstdata’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1218:42: + + real(ESMF_KIND_R8) :: starttime, endtime, timesend(1), timereport(1) + 1 +Warning: Unused variable ‘endtime’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1213:70: + + real(ESMF_KIND_R8), pointer :: fptr2d(:,:), fptr1d(:), fieldarray(:) + 1 +Warning: Unused variable ‘fieldarray’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1221:31: + + character(len=80) :: filename + 1 +Warning: Unused variable ‘filename’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1213:55: + + real(ESMF_KIND_R8), pointer :: fptr2d(:,:), fptr1d(:), fieldarray(:) + 1 +Warning: Unused variable ‘fptr1d’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1213:44: + + real(ESMF_KIND_R8), pointer :: fptr2d(:,:), fptr1d(:), fieldarray(:) + 1 +Warning: Unused variable ‘fptr2d’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1223:18: + + integer :: i, ii, j, jj, j1, k, kk, l, count1 + 1 +Warning: Unused variable ‘ii’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1223:29: + + integer :: i, ii, j, jj, j1, k, kk, l, count1 + 1 +Warning: Unused variable ‘j1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1223:25: + + integer :: i, ii, j, jj, j1, k, kk, l, count1 + 1 +Warning: Unused variable ‘jj’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1224:20: + + integer :: localrc, status + 1 +Warning: Unused variable ‘localrc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1220:53: + + real(ESMF_KIND_R8), pointer :: varout(:), lonbuf(:) + 1 +Warning: Unused variable ‘lonbuf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1217:32: + + real(ESMF_KIND_R8) :: maxerror, minerror, totalerrors, deg2rad + 1 +Warning: Unused variable ‘maxerror’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1217:42: + + real(ESMF_KIND_R8) :: maxerror, minerror, totalerrors, deg2rad + 1 +Warning: Unused variable ‘minerror’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1208:16: + + integer :: nc1, nc2 + 1 +Warning: Unused variable ‘nc1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1208:21: + + integer :: nc1, nc2 + 1 +Warning: Unused variable ‘nc2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1210:18: + + integer :: ndims, dimids(3), wamdims(3) + 1 +Warning: Unused variable ‘ndims’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1228:31: + + integer :: numNodes, numElmts + 1 +Warning: Unused variable ‘numelmts’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1228:21: + + integer :: numNodes, numElmts + 1 +Warning: Unused variable ‘numnodes’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1203:40: + + type(ESMF_RouteHandle) :: routehandle + 1 +Warning: Unused variable ‘routehandle’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1218:33: + + real(ESMF_KIND_R8) :: starttime, endtime, timesend(1), timereport(1) + 1 +Warning: Unused variable ‘starttime’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1224:28: + + integer :: localrc, status + 1 +Warning: Unused variable ‘status’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1218:70: + + real(ESMF_KIND_R8) :: starttime, endtime, timesend(1), timereport(1) + 1 +Warning: Unused variable ‘timereport’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1218:55: + + real(ESMF_KIND_R8) :: starttime, endtime, timesend(1), timereport(1) + 1 +Warning: Unused variable ‘timesend’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1217:55: + + real(ESMF_KIND_R8) :: maxerror, minerror, totalerrors, deg2rad + 1 +Warning: Unused variable ‘totalerrors’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1209:18: + + integer :: varid, data2id + 1 +Warning: Unused variable ‘varid’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1220:42: + + real(ESMF_KIND_R8), pointer :: varout(:), lonbuf(:) + 1 +Warning: Unused variable ‘varout’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1201:21: + + type(ESMF_VM) :: vm + 1 +Warning: Unused variable ‘vm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:631:34: + + integer, pointer :: allCounts(:), connectbase(:) + 1 +Warning: Unused variable ‘allcounts’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:622:27: + + type(ESMF_Array) :: array, array1, array2 + 1 +Warning: Unused variable ‘array’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:622:35: + + type(ESMF_Array) :: array, array1, array2 + 1 +Warning: Unused variable ‘array1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:622:43: + + type(ESMF_Array) :: array, array1, array2 + 1 +Warning: Unused variable ‘array2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:621:35: + + type(ESMF_Arrayspec) :: arrayspec + 1 +Warning: Unused variable ‘arrayspec’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:611:98: + + integer :: i,j, k, l, ii, jj, kk, count1, count3, count8, localcount, countup, save, base, base1 + 1 +Warning: Unused variable ‘base1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:631:50: + + integer, pointer :: allCounts(:), connectbase(:) + 1 +Warning: Unused variable ‘connectbase’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:639:71: + + integer :: lonid, latid, hgtid, vertid, elmtid, nodeid, numid, connid, timeid + 1 +Warning: Unused variable ‘connid’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:620:43: + + real(ESMF_KIND_R8), pointer :: conntbl(:), globalCoords(:,:), fptr2d(:,:), fptr1d(:) + 1 +Warning: Unused variable ‘conntbl’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:613:25: + + integer :: start, count, diff, lastlat, totalelements, totalnodes, localnodes, startid + 1 +Warning: Unused variable ‘count’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:611:79: + + integer :: i,j, k, l, ii, jj, kk, count1, count3, count8, localcount, countup, save, base, base1 + 1 +Warning: Unused variable ‘countup’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:640:20: + + integer :: data1id, data2id, wgtid, wamid, ipeid + 1 +Warning: Unused variable ‘data1id’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:640:29: + + integer :: data1id, data2id, wgtid, wamid, ipeid + 1 +Warning: Unused variable ‘data2id’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:595:43: + + real(ESMF_KIND_R8), pointer :: databuf(:) + 1 +Warning: Unused variable ‘databuf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:625:31: + + real(ESMF_KIND_R8) :: differr + 1 +Warning: Unused variable ‘differr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:615:22: + + integer :: elmtcount, increment + 1 +Warning: Unused variable ‘elmtcount’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:639:48: + + integer :: lonid, latid, hgtid, vertid, elmtid, nodeid, numid, connid, timeid + 1 +Warning: Unused variable ‘elmtid’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:624:42: + + real(ESMF_KIND_R8) :: starttime, endtime, timesend(1), timereport(1) + 1 +Warning: Unused variable ‘endtime’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:612:17: + + logical :: even + 1 +Warning: Unused variable ‘even’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:620:86: + + real(ESMF_KIND_R8), pointer :: conntbl(:), globalCoords(:,:), fptr2d(:,:), fptr1d(:) + 1 +Warning: Unused variable ‘fptr1d’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:620:75: + + real(ESMF_KIND_R8), pointer :: conntbl(:), globalCoords(:,:), fptr2d(:,:), fptr1d(:) + 1 +Warning: Unused variable ‘fptr2d’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:606:82: + + integer(ESMF_KIND_I4), pointer :: southind(:), northind(:), totallats(:), gap(:) + 1 +Warning: Unused variable ‘gap’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:620:62: + + real(ESMF_KIND_R8), pointer :: conntbl(:), globalCoords(:,:), fptr2d(:,:), fptr1d(:) + 1 +Warning: Unused variable ‘globalcoords’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:641:24: + + integer :: globalTotal, globalTotalelmt, nodestartid, totalwgts + 1 +Warning: Unused variable ‘globaltotal’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:607:39: + + integer :: minheight, maxheight, halo, neighbor, remind + 1 +Warning: Unused variable ‘halo’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:609:55: + + real(ESMF_KIND_R8) :: lon, lat, hgt, lon1, lat1, hgt1 + 1 +Warning: Unused variable ‘hgt1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:594:46: + + real(ESMF_KIND_R8), pointer :: hgtbuf(:,:,:), varbuf(:,:,:,:) + 1 +Warning: Unused variable ‘hgtbuf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:639:32: + + integer :: lonid, latid, hgtid, vertid, elmtid, nodeid, numid, connid, timeid + 1 +Warning: Unused variable ‘hgtid’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:638:64: + + real(ESMF_KIND_R8), pointer :: lontbl(:), lattbl(:), hgttbl(:) + 1 +Warning: Unused variable ‘hgttbl’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:611:26: + + integer :: i,j, k, l, ii, jj, kk, count1, count3, count8, localcount, countup, save, base, base1 + 1 +Warning: Unused variable ‘ii’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:615:33: + + integer :: elmtcount, increment + 1 +Warning: Unused variable ‘increment’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:628:48: + + integer(ESMF_KIND_I4), pointer :: indices(:,:) + 1 +Warning: Unused variable ‘indices’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:593:80: + + real(ESMF_KIND_R8), pointer :: ipelon(:,:), ipelat(:,:), ipehgt(:), ipedata(:) + 1 +Warning: Unused variable ‘ipedata’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:601:35: + + integer :: wamdims(3), ipedims(3) + 1 +Warning: Unused variable ‘ipedims’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:593:68: + + real(ESMF_KIND_R8), pointer :: ipelon(:,:), ipelat(:,:), ipehgt(:), ipedata(:) + 1 +Warning: Unused variable ‘ipehgt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:640:50: + + integer :: data1id, data2id, wgtid, wamid, ipeid + 1 +Warning: Unused variable ‘ipeid’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:593:57: + + real(ESMF_KIND_R8), pointer :: ipelon(:,:), ipelat(:,:), ipehgt(:), ipedata(:) + 1 +Warning: Unused variable ‘ipelat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:593:44: + + real(ESMF_KIND_R8), pointer :: ipelon(:,:), ipelat(:,:), ipehgt(:), ipedata(:) + 1 +Warning: Unused variable ‘ipelon’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:633:15: + + integer :: j1 + 1 +Warning: Unused variable ‘j1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:611:34: + + integer :: i,j, k, l, ii, jj, kk, count1, count3, count8, localcount, countup, save, base, base1 + 1 +Warning: Unused variable ‘kk’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:611:22: + + integer :: i,j, k, l, ii, jj, kk, count1, count3, count8, localcount, countup, save, base, base1 + 1 +Warning: Unused variable ‘l’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:613:40: + + integer :: start, count, diff, lastlat, totalelements, totalnodes, localnodes, startid + 1 +Warning: Unused variable ‘lastlat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:609:49: + + real(ESMF_KIND_R8) :: lon, lat, hgt, lon1, lat1, hgt1 + 1 +Warning: Unused variable ‘lat1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:639:25: + + integer :: lonid, latid, hgtid, vertid, elmtid, nodeid, numid, connid, timeid + 1 +Warning: Unused variable ‘latid’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:638:53: + + real(ESMF_KIND_R8), pointer :: lontbl(:), lattbl(:), hgttbl(:) + 1 +Warning: Unused variable ‘lattbl’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:634:20: + + integer :: localrc, status + 1 +Warning: Unused variable ‘localrc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:609:43: + + real(ESMF_KIND_R8) :: lon, lat, hgt, lon1, lat1, hgt1 + 1 +Warning: Unused variable ‘lon1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:626:53: + + real(ESMF_KIND_R8), pointer :: varout(:), lonbuf(:) + 1 +Warning: Unused variable ‘lonbuf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:639:18: + + integer :: lonid, latid, hgtid, vertid, elmtid, nodeid, numid, connid, timeid + 1 +Warning: Unused variable ‘lonid’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:638:42: + + real(ESMF_KIND_R8), pointer :: lontbl(:), lattbl(:), hgttbl(:) + 1 +Warning: Unused variable ‘lontbl’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:623:32: + + real(ESMF_KIND_R8) :: maxerror, minerror, totalerrors, deg2rad + 1 +Warning: Unused variable ‘maxerror’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:596:46: + + integer(ESMF_KIND_I4), pointer :: maxlevs(:) + 1 +Warning: Unused variable ‘maxlevs’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:623:42: + + real(ESMF_KIND_R8) :: maxerror, minerror, totalerrors, deg2rad + 1 +Warning: Unused variable ‘minerror’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:598:21: + + integer :: nc1, nc2 + 1 +Warning: Unused variable ‘nc2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:607:49: + + integer :: minheight, maxheight, halo, neighbor, remind + 1 +Warning: Unused variable ‘neighbor’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:642:38: + + type(ESMF_Distgrid) :: nodalDistgrid, distgrid + 1 +Warning: Unused variable ‘nodaldistgrid’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:618:61: + + integer(ESMF_KIND_I4), pointer :: elementCnt(:), nodeCnt(:), sendbuf(:), recvbuf(:) + 1 +Warning: Unused variable ‘nodecnt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:639:56: + + integer :: lonid, latid, hgtid, vertid, elmtid, nodeid, numid, connid, timeid + 1 +Warning: Unused variable ‘nodeid’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:641:54: + + integer :: globalTotal, globalTotalelmt, nodestartid, totalwgts + 1 +Warning: Unused variable ‘nodestartid’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:606:60: + + integer(ESMF_KIND_I4), pointer :: southind(:), northind(:), totallats(:), gap(:) + 1 +Warning: Unused variable ‘northind’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:639:63: + + integer :: lonid, latid, hgtid, vertid, elmtid, nodeid, numid, connid, timeid + 1 +Warning: Unused variable ‘numid’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:618:85: + + integer(ESMF_KIND_I4), pointer :: elementCnt(:), nodeCnt(:), sendbuf(:), recvbuf(:) + 1 +Warning: Unused variable ‘recvbuf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:607:57: + + integer :: minheight, maxheight, halo, neighbor, remind + 1 +Warning: Unused variable ‘remind’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:611:85: + + integer :: i,j, k, l, ii, jj, kk, count1, count3, count8, localcount, countup, save, base, base1 + 1 +Warning: Unused variable ‘save’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:606:47: + + integer(ESMF_KIND_I4), pointer :: southind(:), northind(:), totallats(:), gap(:) + 1 +Warning: Unused variable ‘southind’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:613:18: + + integer :: start, count, diff, lastlat, totalelements, totalnodes, localnodes, startid + 1 +Warning: Unused variable ‘start’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:624:33: + + real(ESMF_KIND_R8) :: starttime, endtime, timesend(1), timereport(1) + 1 +Warning: Unused variable ‘starttime’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:639:79: + + integer :: lonid, latid, hgtid, vertid, elmtid, nodeid, numid, connid, timeid + 1 +Warning: Unused variable ‘timeid’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:624:70: + + real(ESMF_KIND_R8) :: starttime, endtime, timesend(1), timereport(1) + 1 +Warning: Unused variable ‘timereport’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:624:55: + + real(ESMF_KIND_R8) :: starttime, endtime, timesend(1), timereport(1) + 1 +Warning: Unused variable ‘timesend’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:623:55: + + real(ESMF_KIND_R8) :: maxerror, minerror, totalerrors, deg2rad + 1 +Warning: Unused variable ‘totalerrors’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:608:50: + + integer(ESMF_KIND_I4), pointer :: totalheight(:) + 1 +Warning: Unused variable ‘totalheight’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:606:74: + + integer(ESMF_KIND_I4), pointer :: southind(:), northind(:), totallats(:), gap(:) + 1 +Warning: Unused variable ‘totallats’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:641:65: + + integer :: globalTotal, globalTotalelmt, nodestartid, totalwgts + 1 +Warning: Unused variable ‘totalwgts’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:594:63: + + real(ESMF_KIND_R8), pointer :: hgtbuf(:,:,:), varbuf(:,:,:,:) + 1 +Warning: Unused variable ‘varbuf’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:626:42: + + real(ESMF_KIND_R8), pointer :: varout(:), lonbuf(:) + 1 +Warning: Unused variable ‘varout’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:639:40: + + integer :: lonid, latid, hgtid, vertid, elmtid, nodeid, numid, connid, timeid + 1 +Warning: Unused variable ‘vertid’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:640:43: + + integer :: data1id, data2id, wgtid, wamid, ipeid + 1 +Warning: Unused variable ‘wamid’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:614:26: + + integer :: wamtotalnodes + 1 +Warning: Unused variable ‘wamtotalnodes’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:627:43: + + real(ESMF_KIND_R8), pointer :: weights(:) + 1 +Warning: Unused variable ‘weights’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:630:24: + + integer :: wgtcount(1) + 1 +Warning: Unused variable ‘wgtcount’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:640:36: + + integer :: data1id, data2id, wgtid, wamid, ipeid + 1 +Warning: Unused variable ‘wgtid’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:383:67: + + subroutine InitializeP5(mediator, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘clock’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:383:47: + + subroutine InitializeP5(mediator, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘importstate’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:270:67: + + subroutine InitializeP4(mediator, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘clock’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:285:36: + + logical :: freeflag + 1 +Warning: Unused variable ‘freeflag’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:270:47: + + subroutine InitializeP4(mediator, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘importstate’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:276:30: + + type(ESMF_VM) :: vm + 1 +Warning: Unused variable ‘vm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:188:72: + + subroutine InitializeRealize(mediator, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘clock’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:188:65: + + subroutine InitializeRealize(mediator, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘exportstate’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:149:74: + + subroutine InitializeAdvertise(mediator, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘clock’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:149:41: + + subroutine InitializeAdvertise(mediator, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘mediator’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:131:67: + + subroutine InitializeP0(mediator, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘clock’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:131:60: + + subroutine InitializeP0(mediator, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘exportstate’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:131:47: + + subroutine InitializeP0(mediator, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘importstate’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR_SpaceWeather.F90:1515:0: + + subroutine convert2Sphdeg (coord1, coord2, coord3, lon, lat, hgt) + +Warning: ‘convert2sphdeg’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_NEMS_Rusage.F90:652:33: + + character(len=100) :: message + 1 +Warning: Unused variable ‘message’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_NEMS_Rusage.F90:390:25: + + character*100 message + 1 +Warning: Unused variable ‘message’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_NEMS_Rusage.F90:389:66: + + double precision :: sendbuf, nodesum, sendbuf3(3), recvbuf3(3) + 1 +Warning: Unused variable ‘recvbuf3’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_NEMS_Rusage.F90:248:24: + + integer :: localrank ! mpi_comm_world rank of local rank + 1 +Warning: Unused variable ‘localrank’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:9073:6: + + write (msgString, "(A)") trim(msgString)//trim(adjustl(numString)) + 1 +Warning: Nonconforming tab character at (1) [-Wtabs] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:9062:45: + + factorIndexList(1,:) = (/(i, i=1, sumElementCountPDeDst, 1)/) + 1 +Warning: Possible change of value in conversion from INTEGER(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:9063:43: + + factorIndexList(2,:) = (/(i, i=sumElementCountPDeDst, 1, -1)/) + 1 +Warning: Possible change of value in conversion from INTEGER(8) to INTEGER(4) at (1) [-Wconversion] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:8734:49: + + fldlist%stdname(1:cnum) = tmpString(1:cnum) + 1 +Warning: CHARACTER expression will be truncated in assignment (64/256) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:8738:51: + + fldlist%shortname(1:cnum) = tmpString(1:cnum) + 1 +Warning: CHARACTER expression will be truncated in assignment (64/256) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:8742:55: + + fldlist%transferOffer(1:cnum) = tmpString(1:cnum) + 1 +Warning: CHARACTER expression will be truncated in assignment (64/256) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:8746:49: + + fldlist%mapping(1:cnum) = tmpString(1:cnum) + 1 +Warning: CHARACTER expression will be truncated in assignment (64/256) at (1) [-Wcharacter-truncation] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:9130:39: + + subroutine NEMS_GridCopyItem(gridcomp, gridSrc, gridDst, item, tolerance, compare, invert, rc) + 1 +Warning: Unused dummy argument ‘gridcomp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:9155:47: + + integer :: localPet + 1 +Warning: Unused variable ‘localpet’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:9156:48: + + character(len=10) :: numString + 1 +Warning: Unused variable ‘numstring’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:8453:49: + + character(ESMF_MAXSTR) :: transferAction + 1 +Warning: Unused variable ‘transferaction’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:7968:43: + + type(ESMF_StateItem_Flag) :: itemType + 1 +Warning: Unused variable ‘itemtype’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:7829:36: + + integer :: i,j,n + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:7829:38: + + integer :: i,j,n + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:7737:36: + + integer :: i,j,n + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:7737:38: + + integer :: i,j,n + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:6980:36: + + integer :: i,j,n + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:6980:38: + + integer :: i,j,n + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:6760:35: + + integer :: i,j,n,fieldCount + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:6760:37: + + integer :: i,j,n,fieldCount + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:6703:39: + + type(ESMF_Field) :: field + 1 +Warning: Unused variable ‘field’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:6700:35: + + integer :: i,j,n + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:6700:37: + + integer :: i,j,n + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:6700:39: + + integer :: i,j,n + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:6268:22: + + type(ESMF_VM):: vm + 1 +Warning: Unused variable ‘vm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5801:60: + + subroutine Finalize(gcomp, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘clock’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5801:53: + + subroutine Finalize(gcomp, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘exportstate’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5801:40: + + subroutine Finalize(gcomp, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘importstate’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5257:42: + + logical :: checkOK, checkOK1, checkOK2 + 1 +Warning: Unused variable ‘checkok’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5257:52: + + logical :: checkOK, checkOK1, checkOK2 + 1 +Warning: Unused variable ‘checkok1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5257:62: + + logical :: checkOK, checkOK1, checkOK2 + 1 +Warning: Unused variable ‘checkok2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5250:49: + + character(ESMF_MAXSTR) :: fieldname1(10),fieldname2(10),fieldname3(10) + 1 +Warning: Unused variable ‘fieldname1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5250:64: + + character(ESMF_MAXSTR) :: fieldname1(10),fieldname2(10),fieldname3(10) + 1 +Warning: Unused variable ‘fieldname2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5250:79: + + character(ESMF_MAXSTR) :: fieldname1(10),fieldname2(10),fieldname3(10) + 1 +Warning: Unused variable ‘fieldname3’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5247:43: + + type(ESMF_StateItem_Flag) :: itemType + 1 +Warning: Unused variable ‘itemtype’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5215:46: + + real(ESMF_KIND_R8), pointer :: atmwgt(:,:),icewgt(:,:),customwgt(:,:) + 1 +Warning: Unused variable ‘atmwgt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5216:42: + + logical :: checkOK, checkOK1, checkOK2 + 1 +Warning: Unused variable ‘checkok’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5216:52: + + logical :: checkOK, checkOK1, checkOK2 + 1 +Warning: Unused variable ‘checkok1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5216:62: + + logical :: checkOK, checkOK1, checkOK2 + 1 +Warning: Unused variable ‘checkok2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5206:40: + + type(ESMF_Clock) :: clock + 1 +Warning: Unused variable ‘clock’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5215:73: + + real(ESMF_KIND_R8), pointer :: atmwgt(:,:),icewgt(:,:),customwgt(:,:) + 1 +Warning: Unused variable ‘customwgt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5214:48: + + real(ESMF_KIND_R8), pointer :: dataPtr1(:,:),dataPtr2(:,:),dataPtr3(:,:) + 1 +Warning: Unused variable ‘dataptr1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5214:62: + + real(ESMF_KIND_R8), pointer :: dataPtr1(:,:),dataPtr2(:,:),dataPtr3(:,:) + 1 +Warning: Unused variable ‘dataptr2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5214:76: + + real(ESMF_KIND_R8), pointer :: dataPtr1(:,:),dataPtr2(:,:),dataPtr3(:,:) + 1 +Warning: Unused variable ‘dataptr3’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5209:59: + + type(ESMF_State) :: importState, exportState + 1 +Warning: Unused variable ‘exportstate’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5213:49: + + character(ESMF_MAXSTR) :: fieldname1(10),fieldname2(10),fieldname3(10) + 1 +Warning: Unused variable ‘fieldname1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5213:64: + + character(ESMF_MAXSTR) :: fieldname1(10),fieldname2(10),fieldname3(10) + 1 +Warning: Unused variable ‘fieldname2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5213:79: + + character(ESMF_MAXSTR) :: fieldname1(10),fieldname2(10),fieldname3(10) + 1 +Warning: Unused variable ‘fieldname3’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5212:36: + + integer :: i,j,n + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5215:58: + + real(ESMF_KIND_R8), pointer :: atmwgt(:,:),icewgt(:,:),customwgt(:,:) + 1 +Warning: Unused variable ‘icewgt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5209:46: + + type(ESMF_State) :: importState, exportState + 1 +Warning: Unused variable ‘importstate’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5211:43: + + type(InternalState) :: is_local + 1 +Warning: Unused variable ‘is_local’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5210:43: + + type(ESMF_StateItem_Flag) :: itemType + 1 +Warning: Unused variable ‘itemtype’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5212:38: + + integer :: i,j,n + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5212:40: + + integer :: i,j,n + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5207:39: + + type(ESMF_Time) :: time + 1 +Warning: Unused variable ‘time’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:5208:42: + + character(len=64) :: timestr + 1 +Warning: Unused variable ‘timestr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4906:40: + + integer :: i,j,n + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4909:54: + + qbot(:,:),rbot(:,:),tbot(:,:), pbot(:,:) + 1 +Warning: Unused variable ‘rbot’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4908:75: + + real(ESMF_KIND_R8), pointer :: zbot(:,:),ubot(:,:),vbot(:,:),thbot(:,:), & + 1 +Warning: Unused variable ‘thbot’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4752:36: + + integer :: i,j,n + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4752:38: + + integer :: i,j,n + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4752:40: + + integer :: i,j,n + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4701:40: + + type(ESMF_Clock) :: clock + 1 +Warning: Unused variable ‘clock’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4711:86: + + taux(:,:),tauy(:,:),tref(:,:),qref(:,:),duu10n(:,:) + 1 +Warning: Unused variable ‘duu10n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4717:81: + + taux1(1),tauy1(1),tref1(1),qref1(1),duu10n1(1) + 1 +Warning: Unused variable ‘duu10n1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4710:74: + + real(ESMF_KIND_R8), pointer :: sen (:,:),lat (:,:),lwup(:,:),evap(:,:), & + 1 +Warning: Unused variable ‘evap’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4716:70: + + real(ESMF_KIND_R8) :: sen1 (1),lat1 (1),lwup1(1),evap1(1), & + 1 +Warning: Unused variable ‘evap1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4704:59: + + type(ESMF_State) :: importState, exportState + 1 +Warning: Unused variable ‘exportstate’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4706:36: + + integer :: i,j,n + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4704:46: + + type(ESMF_State) :: importState, exportState + 1 +Warning: Unused variable ‘importstate’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4705:43: + + type(InternalState) :: is_local + 1 +Warning: Unused variable ‘is_local’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4706:38: + + integer :: i,j,n + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4710:54: + + real(ESMF_KIND_R8), pointer :: sen (:,:),lat (:,:),lwup(:,:),evap(:,:), & + 1 +Warning: Unused variable ‘lat’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4716:52: + + real(ESMF_KIND_R8) :: sen1 (1),lat1 (1),lwup1(1),evap1(1), & + 1 +Warning: Unused variable ‘lat1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4710:64: + + real(ESMF_KIND_R8), pointer :: sen (:,:),lat (:,:),lwup(:,:),evap(:,:), & + 1 +Warning: Unused variable ‘lwup’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4716:61: + + real(ESMF_KIND_R8) :: sen1 (1),lat1 (1),lwup1(1),evap1(1), & + 1 +Warning: Unused variable ‘lwup1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4709:74: + + real(ESMF_KIND_R8), pointer :: us (:,:),vs (:,:),ts (:,:),mask(:,:) + 1 +Warning: Unused variable ‘mask’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4714:43: + + integer :: mask1(1) + 1 +Warning: Unused variable ‘mask1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4706:40: + + integer :: i,j,n + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4708:75: + + qbot(:,:),rbot(:,:),tbot(:,:), pbot(:,:) + 1 +Warning: Unused variable ‘pbot’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4708:44: + + qbot(:,:),rbot(:,:),tbot(:,:), pbot(:,:) + 1 +Warning: Unused variable ‘qbot’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4713:43: + + qbot1(1),rbot1(1),tbot1(1) + 1 +Warning: Unused variable ‘qbot1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4711:74: + + taux(:,:),tauy(:,:),tref(:,:),qref(:,:),duu10n(:,:) + 1 +Warning: Unused variable ‘qref’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4717:70: + + taux1(1),tauy1(1),tref1(1),qref1(1),duu10n1(1) + 1 +Warning: Unused variable ‘qref1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4708:54: + + qbot(:,:),rbot(:,:),tbot(:,:), pbot(:,:) + 1 +Warning: Unused variable ‘rbot’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4713:52: + + qbot1(1),rbot1(1),tbot1(1) + 1 +Warning: Unused variable ‘rbot1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4710:44: + + real(ESMF_KIND_R8), pointer :: sen (:,:),lat (:,:),lwup(:,:),evap(:,:), & + 1 +Warning: Unused variable ‘sen’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4716:43: + + real(ESMF_KIND_R8) :: sen1 (1),lat1 (1),lwup1(1),evap1(1), & + 1 +Warning: Unused variable ‘sen1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4711:44: + + taux(:,:),tauy(:,:),tref(:,:),qref(:,:),duu10n(:,:) + 1 +Warning: Unused variable ‘taux’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4717:43: + + taux1(1),tauy1(1),tref1(1),qref1(1),duu10n1(1) + 1 +Warning: Unused variable ‘taux1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4711:54: + + taux(:,:),tauy(:,:),tref(:,:),qref(:,:),duu10n(:,:) + 1 +Warning: Unused variable ‘tauy’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4717:52: + + taux1(1),tauy1(1),tref1(1),qref1(1),duu10n1(1) + 1 +Warning: Unused variable ‘tauy1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4708:64: + + qbot(:,:),rbot(:,:),tbot(:,:), pbot(:,:) + 1 +Warning: Unused variable ‘tbot’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4713:61: + + qbot1(1),rbot1(1),tbot1(1) + 1 +Warning: Unused variable ‘tbot1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4707:75: + + real(ESMF_KIND_R8), pointer :: zbot(:,:),ubot(:,:),vbot(:,:),thbot(:,:), & + 1 +Warning: Unused variable ‘thbot’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4712:71: + + real(ESMF_KIND_R8) :: zbot1(1),ubot1(1),vbot1(1),thbot1(1), & + 1 +Warning: Unused variable ‘thbot1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4702:39: + + type(ESMF_Time) :: time + 1 +Warning: Unused variable ‘time’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4703:42: + + character(len=64) :: timestr + 1 +Warning: Unused variable ‘timestr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4711:64: + + taux(:,:),tauy(:,:),tref(:,:),qref(:,:),duu10n(:,:) + 1 +Warning: Unused variable ‘tref’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4717:61: + + taux1(1),tauy1(1),tref1(1),qref1(1),duu10n1(1) + 1 +Warning: Unused variable ‘tref1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4709:64: + + real(ESMF_KIND_R8), pointer :: us (:,:),vs (:,:),ts (:,:),mask(:,:) + 1 +Warning: Unused variable ‘ts’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4715:61: + + real(ESMF_KIND_R8) :: us1 (1),vs1 (1),ts1 (1) + 1 +Warning: Unused variable ‘ts1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4707:54: + + real(ESMF_KIND_R8), pointer :: zbot(:,:),ubot(:,:),vbot(:,:),thbot(:,:), & + 1 +Warning: Unused variable ‘ubot’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4712:52: + + real(ESMF_KIND_R8) :: zbot1(1),ubot1(1),vbot1(1),thbot1(1), & + 1 +Warning: Unused variable ‘ubot1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4709:44: + + real(ESMF_KIND_R8), pointer :: us (:,:),vs (:,:),ts (:,:),mask(:,:) + 1 +Warning: Unused variable ‘us’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4715:43: + + real(ESMF_KIND_R8) :: us1 (1),vs1 (1),ts1 (1) + 1 +Warning: Unused variable ‘us1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4707:64: + + real(ESMF_KIND_R8), pointer :: zbot(:,:),ubot(:,:),vbot(:,:),thbot(:,:), & + 1 +Warning: Unused variable ‘vbot’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4712:61: + + real(ESMF_KIND_R8) :: zbot1(1),ubot1(1),vbot1(1),thbot1(1), & + 1 +Warning: Unused variable ‘vbot1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4709:54: + + real(ESMF_KIND_R8), pointer :: us (:,:),vs (:,:),ts (:,:),mask(:,:) + 1 +Warning: Unused variable ‘vs’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4715:52: + + real(ESMF_KIND_R8) :: us1 (1),vs1 (1),ts1 (1) + 1 +Warning: Unused variable ‘vs1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4707:44: + + real(ESMF_KIND_R8), pointer :: zbot(:,:),ubot(:,:),vbot(:,:),thbot(:,:), & + 1 +Warning: Unused variable ‘zbot’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4712:43: + + real(ESMF_KIND_R8) :: zbot1(1),ubot1(1),vbot1(1),thbot1(1), & + 1 +Warning: Unused variable ‘zbot1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4525:40: + + type(ESMF_Field) :: field + 1 +Warning: Unused variable ‘field’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4343:40: + + type(ESMF_Field) :: field + 1 +Warning: Unused variable ‘field’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4057:76: + + real(ESMF_KIND_R8), pointer :: dataPtr1(:,:),dataPtr2(:,:),dataPtr3(:,:) + 1 +Warning: Unused variable ‘dataptr3’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:4055:40: + + type(ESMF_Field) :: field + 1 +Warning: Unused variable ‘field’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:3136:73: + + real(ESMF_KIND_R8), pointer :: ocnwgt(:,:),icewgt(:,:),customwgt(:,:) + 1 +Warning: Unused variable ‘customwgt’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:3127:40: + + type(ESMF_Field) :: field + 1 +Warning: Unused variable ‘field’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:3077:40: + + type(ESMF_Clock) :: clock + 1 +Warning: Unused variable ‘clock’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:3083:48: + + real(ESMF_KIND_R8), pointer :: dataPtr1(:,:),dataPtr2(:,:),dataPtr3(:,:) + 1 +Warning: Unused variable ‘dataptr1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:3083:62: + + real(ESMF_KIND_R8), pointer :: dataPtr1(:,:),dataPtr2(:,:),dataPtr3(:,:) + 1 +Warning: Unused variable ‘dataptr2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:3083:76: + + real(ESMF_KIND_R8), pointer :: dataPtr1(:,:),dataPtr2(:,:),dataPtr3(:,:) + 1 +Warning: Unused variable ‘dataptr3’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:3080:59: + + type(ESMF_State) :: importState, exportState + 1 +Warning: Unused variable ‘exportstate’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:3081:40: + + type(ESMF_Field) :: field + 1 +Warning: Unused variable ‘field’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:3084:36: + + integer :: i,j,n + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:3080:46: + + type(ESMF_State) :: importState, exportState + 1 +Warning: Unused variable ‘importstate’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:3082:43: + + type(InternalState) :: is_local + 1 +Warning: Unused variable ‘is_local’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:3084:38: + + integer :: i,j,n + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:3084:40: + + integer :: i,j,n + 1 +Warning: Unused variable ‘n’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:3078:39: + + type(ESMF_Time) :: time + 1 +Warning: Unused variable ‘time’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:3079:42: + + character(len=64) :: timestr + 1 +Warning: Unused variable ‘timestr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1721:70: + + subroutine InitializeIPDv03p5(gcomp, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘clock’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1742:59: + + integer(ESMF_KIND_I4), pointer :: dataPtr_arrayAtm(:,:) + 1 +Warning: Unused variable ‘dataptr_arrayatm’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1721:63: + + subroutine InitializeIPDv03p5(gcomp, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘exportstate’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1733:48: + + real(ESMF_KIND_R8), pointer :: factorList(:) + 1 +Warning: Unused variable ‘factorlist’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1728:48: + + type(ESMF_Field) :: field, field1, field2 + 1 +Warning: Unused variable ‘field1’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1728:56: + + type(ESMF_Field) :: field, field1, field2 + 1 +Warning: Unused variable ‘field2’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1729:44: + + type(ESMF_Field) :: fieldArea + 1 +Warning: Unused variable ‘fieldarea’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1730:39: + + type(ESMF_Grid) :: grid + 1 +Warning: Unused variable ‘grid’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1721:50: + + subroutine InitializeIPDv03p5(gcomp, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘importstate’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1734:39: + + character(ESMF_MAXSTR) :: name + 1 +Warning: Unused variable ‘name’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1533:43: + + integer :: i, j, n, n1, fieldCount, nxg + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1533:67: + + integer :: i, j, n, n1, fieldCount, nxg + 1 +Warning: Unused variable ‘nxg’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1443:70: + + subroutine InitializeIPDv03p4(gcomp, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘clock’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1443:63: + + subroutine InitializeIPDv03p4(gcomp, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘exportstate’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1443:50: + + subroutine InitializeIPDv03p4(gcomp, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘importstate’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1368:64: + + subroutine realizeConnectedFields(state, fieldNameList, grid, string, rc) + 1 +Warning: Unused dummy argument ‘grid’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1193:70: + + subroutine InitializeIPDv03p3(gcomp, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘clock’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1193:63: + + subroutine InitializeIPDv03p3(gcomp, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘exportstate’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1200:36: + + integer :: i, j + 1 +Warning: Unused variable ‘i’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1193:50: + + subroutine InitializeIPDv03p3(gcomp, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘importstate’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1204:46: + + real(ESMF_KIND_R8) :: intervalSec + 1 +Warning: Unused variable ‘intervalsec’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1200:39: + + integer :: i, j + 1 +Warning: Unused variable ‘j’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1201:63: + + real(kind=ESMF_KIND_R8),pointer :: lonPtr(:,:), latPtr(:,:) + 1 +Warning: Unused variable ‘latptr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1201:50: + + real(kind=ESMF_KIND_R8),pointer :: lonPtr(:,:), latPtr(:,:) + 1 +Warning: Unused variable ‘lonptr’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1205:43: + + type(ESMF_TimeInterval) :: timeStep + 1 +Warning: Unused variable ‘timestep’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1014:70: + + subroutine InitializeIPDv03p1(gcomp, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘clock’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:1014:37: + + subroutine InitializeIPDv03p1(gcomp, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘gcomp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:907:57: + + subroutine InitializeP0(gcomp, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘exportstate’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:907:44: + + subroutine InitializeP0(gcomp, importState, exportState, clock, rc) + 1 +Warning: Unused dummy argument ‘importstate’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:914:62: + + character(len=NUOPC_PhaseMapStringLength) :: initPhases(6) + 1 +Warning: Unused variable ‘initphases’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:6687:0: + + subroutine fieldBundle_initFromFB(FBout, FBin, grid, name, rc) + +Warning: ‘fieldbundle_initfromfb’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:7075:0: + + subroutine FieldBundle_FieldCopy(FBin,fldin,FBout,fldout,rc) + +Warning: ‘fieldbundle_fieldcopy’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:8253:0: + + subroutine FieldBundle_SetFldPtr(FB, fldname, val, rc) + +Warning: ‘fieldbundle_setfldptr’ defined but not used [-Wunused-function] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_MEDIATOR.F90:9296:0: + + subroutine NUOPCplus_UpdateTimestampS(state, time, rc) + +Warning: ‘nuopcplus_updatetimestamps’ defined but not used [-Wunused-function] +[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_EARTH_GRID_COMP.F90:4173:77: + + recursive subroutine ModifyCplLists(driver, importState, exportState, clock, & + 1 +Warning: Unused dummy argument ‘clock’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_EARTH_GRID_COMP.F90:4173:70: + + recursive subroutine ModifyCplLists(driver, importState, exportState, clock, & + 1 +Warning: Unused dummy argument ‘exportstate’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_EARTH_GRID_COMP.F90:4173:57: + + recursive subroutine ModifyCplLists(driver, importState, exportState, clock, & + 1 +Warning: Unused dummy argument ‘importstate’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_EARTH_GRID_COMP.F90:4146:48: + + logical :: existflag + 1 +Warning: Unused variable ‘existflag’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_EARTH_GRID_COMP.F90:4144:46: + + integer :: localrc, stat + 1 +Warning: Unused variable ‘localrc’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_EARTH_GRID_COMP.F90:3236:50: + + integer :: localrc, stat, i, j, petCount + 1 +Warning: Unused variable ‘localrc’ declared at (1) [-Wunused-variable] +[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_NEMS_GRID_COMP.F90:75:71: + + CHARACTER(ESMF_MAXSTR),DIMENSION(:),ALLOCATABLE :: EXP_EARTH_NAME !<-- Export state name of the EARTH components + 1 +Warning: Unused PRIVATE module variable ‘exp_earth_name’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_NEMS_GRID_COMP.F90:76:70: + + CHARACTER(ESMF_MAXSTR),DIMENSION(:),ALLOCATABLE :: GC_EARTH_NAME !<-- Name of the EARTH component + 1 +Warning: Unused PRIVATE module variable ‘gc_earth_name’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_NEMS_GRID_COMP.F90:74:71: + + CHARACTER(ESMF_MAXSTR),DIMENSION(:),ALLOCATABLE :: IMP_EARTH_NAME !<-- Import state name of the EARTH components + 1 +Warning: Unused PRIVATE module variable ‘imp_earth_name’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_NEMS_GRID_COMP.F90:70:52: + + INTEGER,DIMENSION(:, :),ALLOCATABLE :: PETLIST !<-- Task list for each member + 1 +Warning: Unused PRIVATE module variable ‘petlist’ declared at (1) [-Wunused-value] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_NEMS_GRID_COMP.F90:896:41: + + ,CLOCK_MAIN & + 1 +Warning: Unused dummy argument ‘clock_main’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_NEMS_GRID_COMP.F90:895:40: + + ,EXP_STATE & + 1 +Warning: Unused dummy argument ‘exp_state’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_NEMS_GRID_COMP.F90:894:40: + + ,IMP_STATE & + 1 +Warning: Unused dummy argument ‘imp_state’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_NEMS_GRID_COMP.F90:893:45: + + SUBROUTINE NEMS_FINALIZE(NEMS_GRID_COMP & + 1 +Warning: Unused dummy argument ‘nems_grid_comp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_NEMS_GRID_COMP.F90:704:35: + + ,EXP_STATE & + 1 +Warning: Unused dummy argument ‘exp_state’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_NEMS_GRID_COMP.F90:703:35: + + ,IMP_STATE & + 1 +Warning: Unused dummy argument ‘imp_state’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_NEMS_GRID_COMP.F90:702:40: + + SUBROUTINE NEMS_RUN(NEMS_GRID_COMP & + 1 +Warning: Unused dummy argument ‘nems_grid_comp’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_NEMS_GRID_COMP.F90:181:42: + + ,EXP_STATE & + 1 +Warning: Unused dummy argument ‘exp_state’ at (1) [-Wunused-dummy-argument] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/module_NEMS_GRID_COMP.F90:180:42: + + ,IMP_STATE & + 1 +Warning: Unused dummy argument ‘imp_state’ at (1) [-Wunused-dummy-argument] +[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 +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/nems_c_rusage.c: In function ‘nems_c_crc32’: +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/nems_c_rusage.c:93:12: warning: unused variable ‘crc32c’ [-Wunused-variable] + uint32_t crc32c; + ^~~~~~ +mpif.h:561:54: + +Warning: Unused variable ‘mpi_statuses_ignore’ declared at (1) [-Wunused-variable] +/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/NEMS/src/MAIN_NEMS.F90:117:26: + + INTEGER :: RUSAGE_RC !<-- Resource usage collection flag + 1 +Warning: Unused variable ‘rusage_rc’ declared at (1) [-Wunused-variable] +[100%] Linking Fortran executable NEMS.exe +[100%] Built target NEMS.exe ++ mv NEMS.exe ../fv3_2.exe ++ cp /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/gnu/modulefiles/cheyenne.gnu/fv3 ../modules.fv3_2 ++ cd .. + '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_9 BUILD_ENV=cheyenne.gnu 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y' NEMS_BUILDOPT=DEBUG=Y clean -Will copy modules.nems and NEMS.x as fv3_9 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/fv3gfs' -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/build -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/gnu_20191025/NEMS/src' -+ elapsed=246 -+ echo 'Elapsed time 246 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y finished' -Elapsed time 246 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y finished ++ rm -rf build_fv3_2 ++ elapsed=124 ++ echo 'Elapsed time 124 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y finished' +Elapsed time 124 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y finished diff --git a/tests/Compile_cheyenne.intel.log b/tests/Compile_cheyenne.intel.log index ec478e0f4b..109898d25c 100644 --- a/tests/Compile_cheyenne.intel.log +++ b/tests/Compile_cheyenne.intel.log @@ -1,558 +1,59 @@ + SECONDS=0 ++++ readlink -f ./compile_cmake.sh +++ dirname /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/compile_cmake.sh ++ readonly MYDIR=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests ++ MYDIR=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests ++ readonly ARGC=4 ++ ARGC=4 ++ cd /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests ++ [[ 4 -eq 0 ]] + [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.intel -+ BUILD_TARGET=cheyenne.intel -+ readonly 'MAKE_OPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' -+ readonly BUILD_NAME=fv3_10 -+ BUILD_NAME=fv3_10 -+ readonly clean_before=YES ++ PATHTR=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel ++ MACHINE_ID=cheyenne.intel ++ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta' ++ BUILD_NAME=fv3_1 + clean_before=YES -+ readonly clean_after=YES + clean_after=YES -+ hostname -cheyenne6 -+ echo 'Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y into fv3_10.exe on cheyenne.intel' -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y into fv3_10.exe on cheyenne.intel -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake ++ BUILD_DIR=build_fv3_1 + [[ cheyenne.intel == cheyenne.* ]] + MAKE_THREADS=3 + MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\W\W\3\=\Y* ]] -+ [[ 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 == *\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* ]] -+ NEMS_BUILDOPT=REPRO=Y ++ hostname +cheyenne6 ++ cd /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests ++ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta into fv3_1.exe on cheyenne.intel' +Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta into fv3_1.exe on cheyenne.intel + '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_10 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' NEMS_BUILDOPT=REPRO=Y distclean -Will copy modules.nems and NEMS.x as fv3_10 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include" ; \ -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched --clean -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: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_10 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' NEMS_BUILDOPT=REPRO=Y build -Will copy modules.nems and NEMS.x as fv3_10 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/modulefiles/cheyenne.intel/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_10" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_10 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/conf/configure.fv3.cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ -exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/threadloc.c -o ../mpp/threadloc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh cheyenne.intel "$PATH_CCPP" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk \ - "REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"" NO NO ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/include ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched ++ rm -rf build_fv3_1 ++ mkdir -p build_fv3_1 ++ 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' ++ [[ cheyenne.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 /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel ++ ./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_1/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 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 @@ -581,7 +82,7 @@ INFO: Converting local name evap_land of variable kinematic_surface_upward_laten 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 @@ -895,6 +396,7 @@ INFO: Converting local name zorlo of variable surface_roughness_length_over_ocea 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 @@ -1124,7 +626,6 @@ INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_mom 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 lgocart of variable flag_gocart 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 @@ -1286,7 +787,7 @@ INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux 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 save_q of variable tracer_concentration_save 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 runoff of variable total_runoff 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 @@ -1457,7 +958,7 @@ INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from 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 islmsk_cice of variable sea_land_ice_mask_cice 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 @@ -1596,7 +1097,7 @@ INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of var 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 runoff of variable total_runoff 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 @@ -1708,6 +1209,7 @@ INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_ 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 @@ -1755,6 +1257,7 @@ INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ 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 qgrs of variable tracer_concentration 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 con_t0c of variable temperature_at_zero_celsius from new to old metadata @@ -1867,7 +1370,7 @@ INFO: Converting local name restart of variable flag_for_restart from new to old 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html +INFO: Metadata table for model FV3 written to tests/build_fv3_1/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 @@ -1905,8 +1408,7 @@ 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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post +INFO: Parsed tables in scheme zhaocarr_precpd INFO: Parsed tables in scheme noahmpdrv INFO: Parsed tables in scheme myjpbl_wrapper INFO: Parsed tables in scheme GFS_surface_generic_pre @@ -1919,7 +1421,7 @@ 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 zhaocarr_precpd +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 @@ -1935,7 +1437,7 @@ 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_noahmp_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 @@ -1945,6 +1447,7 @@ 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 @@ -1955,7 +1458,6 @@ INFO: Parsed tables in scheme mp_thompson_post 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 gwdps_post INFO: Parsed tables in scheme cires_ugwp INFO: Parsed tables in scheme get_prs_fv3 INFO: Parsed tables in scheme get_phi_fv3 @@ -1965,9 +1467,7 @@ 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 GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post INFO: Parsed tables in scheme sfc_cice INFO: Parsed tables in scheme mynnrad_post INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre @@ -1984,6 +1484,8 @@ INFO: Parsed tables in scheme moninshoc INFO: filtering out variable GFS_stateout_type_instance 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 @@ -1997,8 +1499,10 @@ 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_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 @@ -2008,8 +1512,10 @@ 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_water_to_rain INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep 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 @@ -2033,7 +1539,6 @@ 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 explicit_rainfall_rate_from_previous_timestep 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 @@ -2048,6 +1553,7 @@ 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_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 @@ -2064,21 +1570,17 @@ 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 graupel_precipitation_rate_from_previous_timestep 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_precipitation_rate_from_previous_timestep 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 @@ -2138,11 +1640,9 @@ 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 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 @@ -2167,7 +1667,6 @@ 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_precipitation_rate_from_previous_timestep 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 @@ -2180,6 +1679,8 @@ 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 @@ -2203,6 +1704,7 @@ 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 @@ -2220,7 +1722,6 @@ 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 @@ -2232,6 +1733,8 @@ 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 @@ -2245,23 +1748,329 @@ 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex +INFO: Metadata table for model FV3 written to tests/build_fv3_1/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 before entering 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 before entering 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 before entering MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 162 schemes to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.mk, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.sh +INFO: Added 164 schemes to tests/build_fv3_1/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_1/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_1/FV3/ccpp/physics/CCPP_SCHEMES.sh INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics ... +INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_1/FV3/ccpp/physics ... INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 11 auto-generated caps to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.mk and /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.cmake +INFO: Added 12 auto-generated caps to tests/build_fv3_1/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_1/FV3/ccpp/physics/CCPP_CAPS.cmake INFO: CCPP prebuild step completed successfully. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ ./build_ccpp.sh cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk 'REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp' NO NO -MACHINE_ID=cheyenne.intel is valid. -Compilers set for cheyenne.intel. -Obtained ESMF_LIB=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib from /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -DNETCDF_DIR=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/ -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DOPENMP=ON -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... ++ source build_fv3_1/FV3/ccpp/physics/CCPP_SCHEMES.sh +++ export 'CCPP_SCHEMES=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfpbltq.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfscuq.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/satmedmfvdifq.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/moninshoc.f' +++ CCPP_SCHEMES='/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfpbltq.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfscuq.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/satmedmfvdifq.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/moninshoc.f' ++ source build_fv3_1/FV3/ccpp/physics/CCPP_CAPS.sh +++ export 'CCPP_CAPS=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_stochastics_cap.F90' +++ CCPP_CAPS='/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_stochastics_cap.F90' ++ source build_fv3_1/FV3/ccpp/physics/CCPP_STATIC_API.sh +++ export CCPP_STATIC_API=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_static_api.F90 +++ CCPP_STATIC_API=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/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* ]] +++ 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 /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/NEMS/src/conf/module-setup.sh.inc +++ __ms_function_name=setup__test_function__28211 +++ eval 'setup__test_function__28211() { /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__28211 | 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 ]] +++ [[ -d /dcom ]] +++ [[ -L /usrx ]] +++ [[ -d /glade ]] +++ eval module help +++ module purge ++++ /glade/u/apps/ch/opt/lmod/8.1.7/lmod/lmod/libexec/lmod bash purge +++ eval 'MODULEPATH=/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep;' export 'MODULEPATH;' '_ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvY29tcGlsZXJzOi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pZGVwIix9;' export '_ModuleTable001_;' '_ModuleTable_Sz_=1;' export '_ModuleTable_Sz_;' ++++ MODULEPATH=/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep ++++ export MODULEPATH ++++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvY29tcGlsZXJzOi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pZGVwIix9 ++++ export _ModuleTable001_ ++++ _ModuleTable_Sz_=1 ++++ export _ModuleTable_Sz_ ++++ : -s sh +++ eval +++ unset __ms_shell +++ unset __ms_ksh_test +++ unset __ms_bash_test +++ unset setup__test_function__28211 +++ unset __ms_function_name ++ [[ cheyenne.intel == macosx.* ]] ++ [[ cheyenne.intel == linux.* ]] ++ module use /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel +++ /glade/u/apps/ch/opt/lmod/8.1.7/lmod/lmod/libexec/lmod bash use /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel ++ eval '__LMOD_REF_COUNT_MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel:1\;/glade/u/apps/ch/modulefiles/default/compilers:1\;/glade/u/apps/ch/modulefiles/default/idep:1;' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel:/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep;' export 'MODULEPATH;' '_ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9nbGFkZS93b3JrL2hlaW56ZWxsL2Z2My91ZnMtd2VhdGhlci1tb2RlbC91ZnMtd2VhdGhlci1tb2RlbF9wdWJsaWMtcmVsZWFzZV91cGRhdGUtZnJvbS1kdGMtZGV2ZWxvcC0yMDE5MTIwOS9pbnRlbC9tb2R1bGVmaWxlcy9jaGV5ZW5uZS5pbnRlbCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvZ2xhZGUvdS9hcHBz;' export '_ModuleTable001_;' '_ModuleTable002_=L2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvY29tcGlsZXJzOi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pZGVwIix9;' export '_ModuleTable002_;' '_ModuleTable_Sz_=2;' export '_ModuleTable_Sz_;' +++ __LMOD_REF_COUNT_MODULEPATH='/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel:1;/glade/u/apps/ch/modulefiles/default/compilers:1;/glade/u/apps/ch/modulefiles/default/idep:1' +++ export __LMOD_REF_COUNT_MODULEPATH +++ MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel:/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep +++ export MODULEPATH +++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9nbGFkZS93b3JrL2hlaW56ZWxsL2Z2My91ZnMtd2VhdGhlci1tb2RlbC91ZnMtd2VhdGhlci1tb2RlbF9wdWJsaWMtcmVsZWFzZV91cGRhdGUtZnJvbS1kdGMtZGV2ZWxvcC0yMDE5MTIwOS9pbnRlbC9tb2R1bGVmaWxlcy9jaGV5ZW5uZS5pbnRlbCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvZ2xhZGUvdS9hcHBz +++ export _ModuleTable001_ +++ _ModuleTable002_=L2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvY29tcGlsZXJzOi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pZGVwIix9 +++ export _ModuleTable002_ +++ _ModuleTable_Sz_=2 +++ export _ModuleTable_Sz_ +++ : -s sh ++ eval ++ module load fv3 +++ /glade/u/apps/ch/opt/lmod/8.1.7/lmod/lmod/libexec/lmod bash load fv3 ++ eval 'ADVISOR_2019_DIR=/glade/u/apps/opt/intel/2019u2/advisor;' export 'ADVISOR_2019_DIR;' 'BACIO_LIB4=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a;' export 'BACIO_LIB4;' 'CC=icc;' export 'CC;' 'CESMDATAROOT=/glade/p/cesmdata/cseg;' export 'CESMDATAROOT;' 'CESMROOT=/glade/p/cesm;' export 'CESMROOT;' 'CMAKE_CXX_COMPILER=mpicxx;' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER=mpicc;' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER=mpif90;' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform=cheyenne.intel;' export 'CMAKE_Platform;' 'COMPILER=intel;' export 'COMPILER;' 'COMPILER_VERSION=19.0.2;' export 'COMPILER_VERSION;' '__LMOD_REF_COUNT_CPATH=/glade/u/apps/ch/opt/mpt_fmods/2.19/intel/19.0.2:1\;/glade/u/apps/ch/opt/mpt/2.19/include:1;' export '__LMOD_REF_COUNT_CPATH;' 'CPATH=/glade/u/apps/ch/opt/mpt_fmods/2.19/intel/19.0.2:/glade/u/apps/ch/opt/mpt/2.19/include;' export 'CPATH;' 'CXX=icpc;' export 'CXX;' 'DASK_ROOT_CONFIG=/glade/u/apps/config/dask;' export 'DASK_ROOT_CONFIG;' 'ENV=/etc/profile.d/modules.sh;' export 'ENV;' 'ESMFMKFILE=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib/esmf.mk;' export 'ESMFMKFILE;' 'F77=ifort;' export 'F77;' 'F90=ifort;' export 'F90;' 'FC=ifort;' export 'FC;' '__LMOD_REF_COUNT_FPATH=/glade/u/apps/ch/opt/mpt/2.19/include:1;' export '__LMOD_REF_COUNT_FPATH;' 'FPATH=/glade/u/apps/ch/opt/mpt/2.19/include;' export 'FPATH;' 'INSPECTOR_2019_DIR=/glade/u/apps/opt/intel/2019u2/inspector;' export 'INSPECTOR_2019_DIR;' 'INTEL_BASE_PATH=/glade/u/apps/opt/intel/2019u2;' export 'INTEL_BASE_PATH;' 'INTEL_COMPILER_BASE_PATH=/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux;' export 'INTEL_COMPILER_BASE_PATH;' 'INTEL_LICENSE_FILE=28518@128.117.177.41;' export 'INTEL_LICENSE_FILE;' 'INTEL_MAJOR_VERSION=19.0;' export 'INTEL_MAJOR_VERSION;' 'INTEL_MINOR_VERSION=0.2;' export 'INTEL_MINOR_VERSION;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH=/glade/u/apps/ch/opt/mpt_fmods/2.19/intel/19.0.2:1\;/glade/u/apps/ch/opt/mpt/2.19/lib:1\;/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/lib/intel64:1\;/ncar/opt/slurm/latest/lib:1\;/glade/u/apps/ch/os/usr/lib64:1\;/glade/u/apps/ch/os/usr/lib:1\;/glade/u/apps/ch/os/lib64:1\;/glade/u/apps/ch/os/lib:1;' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=/glade/u/apps/ch/opt/mpt_fmods/2.19/intel/19.0.2:/glade/u/apps/ch/opt/mpt/2.19/lib:/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/lib/intel64:/ncar/opt/slurm/latest/lib:/glade/u/apps/ch/os/usr/lib64:/glade/u/apps/ch/os/usr/lib:/glade/u/apps/ch/os/lib64:/glade/u/apps/ch/os/lib;' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH=/glade/u/apps/ch/opt/mpt/2.19/lib:1;' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH=/glade/u/apps/ch/opt/mpt/2.19/lib;' export 'LIBRARY_PATH;' 'LMOD_COMPILER=intel;' export 'LMOD_COMPILER;' 'LMOD_COMPILER_VERSION=19.0.2;' export 'LMOD_COMPILER_VERSION;' 'LMOD_FAMILY_COMPILER=intel;' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION=19.0.2;' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI=mpt;' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION=2.19;' export 'LMOD_FAMILY_MPI_VERSION;' 'LMOD_MPI=mpt_fmods;' export 'LMOD_MPI;' 'LMOD_MPI_VERSION=2.19;' export 'LMOD_MPI_VERSION;' 'LM_LICENSE_FILE=28518@128.117.177.41;' export 'LM_LICENSE_FILE;' '__LMOD_REF_COUNT_LOADEDMODULES=ncarenv/1.3:1\;intel/19.0.2:1\;mpt/2.19:1\;ncarcompilers/0.5.0:1\;netcdf/4.6.3:1\;esmf/8.0.0:1\;NCEPlibs/9.9.9:1\;SIONlib/1.7.4:1\;fv3:1;' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES=ncarenv/1.3:intel/19.0.2:mpt/2.19:ncarcompilers/0.5.0:netcdf/4.6.3:esmf/8.0.0:NCEPlibs/9.9.9:SIONlib/1.7.4:fv3;' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/share/man:1\;/glade/u/apps/ch/opt/mpt/2.19/man:1\;/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/man/common:1\;/ncar/opt/slurm/latest/share/man:1\;/usr/local/man:1\;/usr/share/man:1\;/opt/pbs/share/man:1\;/opt/clmgr/man:1\;/opt/sgi/share/man:1;' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/share/man:/glade/u/apps/ch/opt/mpt/2.19/man:/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/man/common:/ncar/opt/slurm/latest/share/man:/usr/local/man:/usr/share/man:/opt/pbs/share/man:/opt/clmgr/man:/opt/sgi/share/man;' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel:1\;/glade/u/apps/ch/modulefiles/default/compilers:1\;/glade/u/apps/ch/modulefiles/default/idep:1\;/glade/u/apps/ch/modulefiles/default/intel/19.0.2:1\;/glade/u/apps/ch/modulefiles/default/mpt/2.19/intel/19.0.2:1\;/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19:1;' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel:/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep:/glade/u/apps/ch/modulefiles/default/intel/19.0.2:/glade/u/apps/ch/modulefiles/default/mpt/2.19/intel/19.0.2:/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19;' export 'MODULEPATH;' 'MPICC_CC=icc;' export 'MPICC_CC;' 'MPICXX_CXX=icpc;' export 'MPICXX_CXX;' 'MPIF08_F08=ifort;' export 'MPIF08_F08;' 'MPIF90_F90=ifort;' export 'MPIF90_F90;' 'MPI_IB_CONGESTED=1;' export 'MPI_IB_CONGESTED;' 'MPI_ROOT=/glade/u/apps/ch/opt/mpt/2.19;' export 'MPI_ROOT;' 'MPI_SYSLOG_COPY=2;' export 'MPI_SYSLOG_COPY;' 'MPT_VERSION=2.19;' export 'MPT_VERSION;' 'MP_COMPILER=intel;' export 'MP_COMPILER;' 'NCAR_EXCLUDE_ASNEEDED=1;' export 'NCAR_EXCLUDE_ASNEEDED;' 'NCAR_HOST=cheyenne;' export 'NCAR_HOST;' 'NCAR_INC_NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include;' export 'NCAR_INC_NETCDF;' 'NCAR_LDFLAGS_NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/lib;' export 'NCAR_LDFLAGS_NETCDF;' 'NCAR_LIBS_MPT=-lrt\' '-ldl;' export 'NCAR_LIBS_MPT;' 'NCAR_LIBS_NETCDF=-Wl,-Bstatic\' '-lnetcdff\' '-lnetcdf\' '-lhdf5hl_fortran\' '-lhdf5_hl\' '-lhdf5_fortran\' '-lhdf5\' '-lsz\' '-lz\' '-Wl,-Bdynamic\' '-lm\' '-ldl;' export 'NCAR_LIBS_NETCDF;' 'NCAR_RANK_MPT=1000;' export 'NCAR_RANK_MPT;' 'NCAR_ROOT_INTEL=/glade/u/apps/opt/intel/2019u2;' export 'NCAR_ROOT_INTEL;' 'NCAR_ROOT_MPT=/glade/u/apps/ch/opt/mpt/2.19;' export 'NCAR_ROOT_MPT;' 'NCAR_ROOT_NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/;' export 'NCAR_ROOT_NETCDF;' 'NCAR_WRAPPER_MPI=/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi;' export 'NCAR_WRAPPER_MPI;' 'NCEPLIBS_DIR=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19;' export 'NCEPLIBS_DIR;' 'NEMSIO_INC=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include;' export 'NEMSIO_INC;' 'NEMSIO_LIB=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a;' export 'NEMSIO_LIB;' 'NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/;' export 'NETCDF;' '__LMOD_REF_COUNT_NLSPATH=/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/lib/intel64/locale/%l_%t/%N:1;' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH=/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/lib/intel64/locale/%l_%t/%N;' export 'NLSPATH;' 'OMP_NUM_THREADS=1;' export 'OMP_NUM_THREADS;' 'OMP_STACKSIZE=64000K;' export 'OMP_STACKSIZE;' 'OSHCC_CC=icc;' export 'OSHCC_CC;' 'OSHCXX_CXX=icpc;' export 'OSHCXX_CXX;' 'OSHF90_F90=ifort;' export 'OSHF90_F90;' '__LMOD_REF_COUNT_PATH=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/bin:1\;/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/bin:1\;/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2:1\;/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi:1\;/glade/u/apps/ch/opt/mpt/2.19/bin:1\;/glade/u/apps/opt/intel/2019u2/vtune_amplifier/bin64:1\;/glade/u/apps/opt/intel/2019u2/inspector/bin64:1\;/glade/u/apps/opt/intel/2019u2/advisor/bin64:1\;/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/bin/intel64:1\;/glade/u/apps/opt/globus-utils:1\;/glade/u/apps/ch/opt/usr/bin:1\;/ncar/opt/slurm/latest/bin:1\;/opt/clmgr/sbin:1\;/opt/clmgr/bin:1\;/opt/sgi/sbin:1\;/opt/sgi/bin:1\;/glade/u/apps/ch/opt/lmod/8.1.7/bin:1\;/glade/u/home/heinzell/bin:1\;/usr/local/bin:1\;/usr/bin:1\;/bin:2\;/usr/bin/X11:1\;/usr/games:1\;/opt/ibutils/bin:1\;/usr/lib/mit/bin:1\;/opt/pbs/bin:1\;/sbin:1\;/glade/u/apps/opt/hpss/hpss-client.5.0.2.p5/bin:1\;/glade/u/apps/ch/os/usr/bin:1;' export '__LMOD_REF_COUNT_PATH;' 'PATH=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/bin:/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/bin:/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2:/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi:/glade/u/apps/ch/opt/mpt/2.19/bin:/glade/u/apps/opt/intel/2019u2/vtune_amplifier/bin64:/glade/u/apps/opt/intel/2019u2/inspector/bin64:/glade/u/apps/opt/intel/2019u2/advisor/bin64:/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/bin/intel64:/glade/u/apps/opt/globus-utils:/glade/u/apps/ch/opt/usr/bin:/ncar/opt/slurm/latest/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/glade/u/apps/ch/opt/lmod/8.1.7/bin:/glade/u/home/heinzell/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games:/opt/ibutils/bin:/usr/lib/mit/bin:/opt/pbs/bin:/sbin:/glade/u/apps/opt/hpss/hpss-client.5.0.2.p5/bin:/glade/u/apps/ch/os/usr/bin;' export 'PATH;' 'PERL5LIB=/glade/u/apps/ch/os/usr/lib/perl5/5.18.2/;' export 'PERL5LIB;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/lib/pkgconfig:1;' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/lib/pkgconfig;' export 'PKG_CONFIG_PATH;' 'SIONLIB=/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19;' export 'SIONLIB;' 'SIONLIB_INC=-I/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/include\' '-I/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/include/mod_64;' export 'SIONLIB_INC;' 'SIONLIB_LIB=-L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib\' '-lsionmpi_f90_64\' '-lsionser_f90_64\' '-lsionmpi_64\' '-lsiongen_64\' '-lsionser_64\' '-lsioncom_64\' '-lsioncom_64_lock_none;' export 'SIONLIB_LIB;' 'SP_LIBd=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a;' export 'SP_LIBd;' 'VTUNE_AMPLIFIER_2019_DIR=/glade/u/apps/opt/intel/2019u2/vtune_amplifier;' export 'VTUNE_AMPLIFIER_2019_DIR;' 'W3EMC_LIBd=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a;' export 'W3EMC_LIBd;' 'W3NCO_LIBd=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a;' export 'W3NCO_LIBd;' 'WRFIO_NCD_LARGE_FILE_SUPPORT=1;' export 'WRFIO_NCD_LARGE_FILE_SUPPORT;' '__LMOD_REF_COUNT__LMFILES_=/glade/u/apps/ch/modulefiles/default/idep/ncarenv/1.3.lua:1\;/glade/u/apps/ch/modulefiles/default/compilers/intel/19.0.2.lua:1\;/glade/u/apps/ch/modulefiles/default/intel/19.0.2/mpt/2.19.lua:1\;/glade/u/apps/ch/modulefiles/default/intel/19.0.2/ncarcompilers/0.5.0.lua:1\;/glade/u/apps/ch/modulefiles/default/intel/19.0.2/netcdf/4.6.3.lua:1\;/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19/esmf/8.0.0:1\;/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19/NCEPlibs/9.9.9:1\;/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19/SIONlib/1.7.4:1\;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel/fv3:1;' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_=/glade/u/apps/ch/modulefiles/default/idep/ncarenv/1.3.lua:/glade/u/apps/ch/modulefiles/default/compilers/intel/19.0.2.lua:/glade/u/apps/ch/modulefiles/default/intel/19.0.2/mpt/2.19.lua:/glade/u/apps/ch/modulefiles/default/intel/19.0.2/ncarcompilers/0.5.0.lua:/glade/u/apps/ch/modulefiles/default/intel/19.0.2/netcdf/4.6.3.lua:/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19/esmf/8.0.0:/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19/NCEPlibs/9.9.9:/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19/SIONlib/1.7.4:/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel/fv3;' export '_LMFILES_;' '_ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJtcHQiLH0sbVQ9e05DRVBsaWJzPXtbImZuIl09Ii9nbGFkZS9wL3JhbC9qbnRwL0dNVEIvdG9vbHMvbW9kdWxlZmlsZXMvaW50ZWwtMTkuMC4yL21wdC0yLjE5L05DRVBsaWJzLzkuOS45IixbImZ1bGxOYW1lIl09Ik5DRVBsaWJzLzkuOS45IixbImxvYWRPcmRlciJdPTcscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iTkNFUGxpYnMvOS45LjkiLH0sU0lPTmxpYj17WyJmbiJdPSIvZ2xhZGUvcC9y;' export '_ModuleTable001_;' '_ModuleTable002_=YWwvam50cC9HTVRCL3Rvb2xzL21vZHVsZWZpbGVzL2ludGVsLTE5LjAuMi9tcHQtMi4xOS9TSU9ObGliLzEuNy40IixbImZ1bGxOYW1lIl09IlNJT05saWIvMS43LjQiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJTSU9ObGliLzEuNy40Iix9LGVzbWY9e1siZm4iXT0iL2dsYWRlL3AvcmFsL2pudHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9pbnRlbC0xOS4wLjIvbXB0LTIuMTkvZXNtZi84LjAuMCIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wIixbImxvYWRPcmRlciJdPTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNt;' export '_ModuleTable002_;' '_ModuleTable003_=Zi84LjAuMCIsfSxmdjM9e1siZm4iXT0iL2dsYWRlL3dvcmsvaGVpbnplbGwvZnYzL3Vmcy13ZWF0aGVyLW1vZGVsL3Vmcy13ZWF0aGVyLW1vZGVsX3B1YmxpYy1yZWxlYXNlX3VwZGF0ZS1mcm9tLWR0Yy1kZXZlbG9wLTIwMTkxMjA5L2ludGVsL21vZHVsZWZpbGVzL2NoZXllbm5lLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09OSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0saW50ZWw9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVycy9pbnRlbC8xOS4wLjIubHVhIixbImZ1bGxOYW1lIl09ImludGVsLzE5LjAuMiIsWyJs;' export '_ModuleTable003_;' '_ModuleTable004_=b2FkT3JkZXIiXT0yLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImludGVsLzE5LjAuMiIsfSxtcHQ9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2ludGVsLzE5LjAuMi9tcHQvMi4xOS5sdWEiLFsiZnVsbE5hbWUiXT0ibXB0LzIuMTkiLFsibG9hZE9yZGVyIl09Myxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJtcHQvMi4xOSIsfSxuY2FyY29tcGlsZXJzPXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pbnRlbC8xOS4wLjIvbmNhcmNvbXBpbGVycy8wLjUuMC5sdWEiLFsiZnVsbE5h;' export '_ModuleTable004_;' '_ModuleTable005_=bWUiXT0ibmNhcmNvbXBpbGVycy8wLjUuMCIsWyJsb2FkT3JkZXIiXT00LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5jYXJjb21waWxlcnMvMC41LjAiLH0sbmNhcmVudj17WyJmbiJdPSIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcC9uY2FyZW52LzEuMy5sdWEiLFsiZnVsbE5hbWUiXT0ibmNhcmVudi8xLjMiLFsibG9hZE9yZGVyIl09MSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuY2FyZW52LzEuMyIsfSxuZXRjZGY9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2ludGVsLzE5LjAu;' export '_ModuleTable005_;' '_ModuleTable006_=Mi9uZXRjZGYvNC42LjMubHVhIixbImZ1bGxOYW1lIl09Im5ldGNkZi80LjYuMyIsWyJsb2FkT3JkZXIiXT01LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZi80LjYuMyIsfSx9LG1wYXRoQT17Ii9nbGFkZS93b3JrL2hlaW56ZWxsL2Z2My91ZnMtd2VhdGhlci1tb2RlbC91ZnMtd2VhdGhlci1tb2RlbF9wdWJsaWMtcmVsZWFzZV91cGRhdGUtZnJvbS1kdGMtZGV2ZWxvcC0yMDE5MTIwOS9pbnRlbC9tb2R1bGVmaWxlcy9jaGV5ZW5uZS5pbnRlbCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRl;' export '_ModuleTable006_;' '_ModuleTable007_=cCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pbnRlbC8xOS4wLjIiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvbXB0LzIuMTkvaW50ZWwvMTkuMC4yIiwiL2dsYWRlL3AvcmFsL2pudHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9pbnRlbC0xOS4wLjIvbXB0LTIuMTkiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVyczovZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfQ==;' export '_ModuleTable007_;' '_ModuleTable_Sz_=7;' export '_ModuleTable_Sz_;' ncar_pylib '()' '{' . '/glade/u/apps/opt/ncar_pylib/ncar_pylib;' '};' +++ ADVISOR_2019_DIR=/glade/u/apps/opt/intel/2019u2/advisor +++ export ADVISOR_2019_DIR +++ BACIO_LIB4=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a +++ export BACIO_LIB4 +++ CC=icc +++ export CC +++ CESMDATAROOT=/glade/p/cesmdata/cseg +++ export CESMDATAROOT +++ CESMROOT=/glade/p/cesm +++ export CESMROOT +++ CMAKE_CXX_COMPILER=mpicxx +++ export CMAKE_CXX_COMPILER +++ CMAKE_C_COMPILER=mpicc +++ export CMAKE_C_COMPILER +++ CMAKE_Fortran_COMPILER=mpif90 +++ export CMAKE_Fortran_COMPILER +++ CMAKE_Platform=cheyenne.intel +++ export CMAKE_Platform +++ COMPILER=intel +++ export COMPILER +++ COMPILER_VERSION=19.0.2 +++ export COMPILER_VERSION +++ __LMOD_REF_COUNT_CPATH='/glade/u/apps/ch/opt/mpt_fmods/2.19/intel/19.0.2:1;/glade/u/apps/ch/opt/mpt/2.19/include:1' +++ export __LMOD_REF_COUNT_CPATH +++ CPATH=/glade/u/apps/ch/opt/mpt_fmods/2.19/intel/19.0.2:/glade/u/apps/ch/opt/mpt/2.19/include +++ export CPATH +++ CXX=icpc +++ export CXX +++ DASK_ROOT_CONFIG=/glade/u/apps/config/dask +++ export DASK_ROOT_CONFIG +++ ENV=/etc/profile.d/modules.sh +++ export ENV +++ ESMFMKFILE=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib/esmf.mk +++ export ESMFMKFILE +++ F77=ifort +++ export F77 +++ F90=ifort +++ export F90 +++ FC=ifort +++ export FC +++ __LMOD_REF_COUNT_FPATH=/glade/u/apps/ch/opt/mpt/2.19/include:1 +++ export __LMOD_REF_COUNT_FPATH +++ FPATH=/glade/u/apps/ch/opt/mpt/2.19/include +++ export FPATH +++ INSPECTOR_2019_DIR=/glade/u/apps/opt/intel/2019u2/inspector +++ export INSPECTOR_2019_DIR +++ INTEL_BASE_PATH=/glade/u/apps/opt/intel/2019u2 +++ export INTEL_BASE_PATH +++ INTEL_COMPILER_BASE_PATH=/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux +++ export INTEL_COMPILER_BASE_PATH +++ INTEL_LICENSE_FILE=28518@128.117.177.41 +++ export INTEL_LICENSE_FILE +++ INTEL_MAJOR_VERSION=19.0 +++ export INTEL_MAJOR_VERSION +++ INTEL_MINOR_VERSION=0.2 +++ export INTEL_MINOR_VERSION +++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/glade/u/apps/ch/opt/mpt_fmods/2.19/intel/19.0.2:1;/glade/u/apps/ch/opt/mpt/2.19/lib:1;/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/lib/intel64:1;/ncar/opt/slurm/latest/lib:1;/glade/u/apps/ch/os/usr/lib64:1;/glade/u/apps/ch/os/usr/lib:1;/glade/u/apps/ch/os/lib64:1;/glade/u/apps/ch/os/lib:1' +++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH +++ LD_LIBRARY_PATH=/glade/u/apps/ch/opt/mpt_fmods/2.19/intel/19.0.2:/glade/u/apps/ch/opt/mpt/2.19/lib:/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/lib/intel64:/ncar/opt/slurm/latest/lib:/glade/u/apps/ch/os/usr/lib64:/glade/u/apps/ch/os/usr/lib:/glade/u/apps/ch/os/lib64:/glade/u/apps/ch/os/lib +++ export LD_LIBRARY_PATH +++ __LMOD_REF_COUNT_LIBRARY_PATH=/glade/u/apps/ch/opt/mpt/2.19/lib:1 +++ export __LMOD_REF_COUNT_LIBRARY_PATH +++ LIBRARY_PATH=/glade/u/apps/ch/opt/mpt/2.19/lib +++ export LIBRARY_PATH +++ LMOD_COMPILER=intel +++ export LMOD_COMPILER +++ LMOD_COMPILER_VERSION=19.0.2 +++ export LMOD_COMPILER_VERSION +++ LMOD_FAMILY_COMPILER=intel +++ export LMOD_FAMILY_COMPILER +++ LMOD_FAMILY_COMPILER_VERSION=19.0.2 +++ export LMOD_FAMILY_COMPILER_VERSION +++ LMOD_FAMILY_MPI=mpt +++ export LMOD_FAMILY_MPI +++ LMOD_FAMILY_MPI_VERSION=2.19 +++ export LMOD_FAMILY_MPI_VERSION +++ LMOD_MPI=mpt_fmods +++ export LMOD_MPI +++ LMOD_MPI_VERSION=2.19 +++ export LMOD_MPI_VERSION +++ LM_LICENSE_FILE=28518@128.117.177.41 +++ export LM_LICENSE_FILE +++ __LMOD_REF_COUNT_LOADEDMODULES='ncarenv/1.3:1;intel/19.0.2:1;mpt/2.19:1;ncarcompilers/0.5.0:1;netcdf/4.6.3:1;esmf/8.0.0:1;NCEPlibs/9.9.9:1;SIONlib/1.7.4:1;fv3:1' +++ export __LMOD_REF_COUNT_LOADEDMODULES +++ LOADEDMODULES=ncarenv/1.3:intel/19.0.2:mpt/2.19:ncarcompilers/0.5.0:netcdf/4.6.3:esmf/8.0.0:NCEPlibs/9.9.9:SIONlib/1.7.4:fv3 +++ export LOADEDMODULES +++ __LMOD_REF_COUNT_MANPATH='/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/share/man:1;/glade/u/apps/ch/opt/mpt/2.19/man:1;/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/man/common:1;/ncar/opt/slurm/latest/share/man:1;/usr/local/man:1;/usr/share/man:1;/opt/pbs/share/man:1;/opt/clmgr/man:1;/opt/sgi/share/man:1' +++ export __LMOD_REF_COUNT_MANPATH +++ MANPATH=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/share/man:/glade/u/apps/ch/opt/mpt/2.19/man:/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/man/common:/ncar/opt/slurm/latest/share/man:/usr/local/man:/usr/share/man:/opt/pbs/share/man:/opt/clmgr/man:/opt/sgi/share/man +++ export MANPATH +++ __LMOD_REF_COUNT_MODULEPATH='/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel:1;/glade/u/apps/ch/modulefiles/default/compilers:1;/glade/u/apps/ch/modulefiles/default/idep:1;/glade/u/apps/ch/modulefiles/default/intel/19.0.2:1;/glade/u/apps/ch/modulefiles/default/mpt/2.19/intel/19.0.2:1;/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19:1' +++ export __LMOD_REF_COUNT_MODULEPATH +++ MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel:/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep:/glade/u/apps/ch/modulefiles/default/intel/19.0.2:/glade/u/apps/ch/modulefiles/default/mpt/2.19/intel/19.0.2:/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19 +++ export MODULEPATH +++ MPICC_CC=icc +++ export MPICC_CC +++ MPICXX_CXX=icpc +++ export MPICXX_CXX +++ MPIF08_F08=ifort +++ export MPIF08_F08 +++ MPIF90_F90=ifort +++ export MPIF90_F90 +++ MPI_IB_CONGESTED=1 +++ export MPI_IB_CONGESTED +++ MPI_ROOT=/glade/u/apps/ch/opt/mpt/2.19 +++ export MPI_ROOT +++ MPI_SYSLOG_COPY=2 +++ export MPI_SYSLOG_COPY +++ MPT_VERSION=2.19 +++ export MPT_VERSION +++ MP_COMPILER=intel +++ export MP_COMPILER +++ NCAR_EXCLUDE_ASNEEDED=1 +++ export NCAR_EXCLUDE_ASNEEDED +++ NCAR_HOST=cheyenne +++ export NCAR_HOST +++ NCAR_INC_NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include +++ export NCAR_INC_NETCDF +++ NCAR_LDFLAGS_NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/lib +++ export NCAR_LDFLAGS_NETCDF +++ NCAR_LIBS_MPT='-lrt -ldl' +++ export NCAR_LIBS_MPT +++ NCAR_LIBS_NETCDF='-Wl,-Bstatic -lnetcdff -lnetcdf -lhdf5hl_fortran -lhdf5_hl -lhdf5_fortran -lhdf5 -lsz -lz -Wl,-Bdynamic -lm -ldl' +++ export NCAR_LIBS_NETCDF +++ NCAR_RANK_MPT=1000 +++ export NCAR_RANK_MPT +++ NCAR_ROOT_INTEL=/glade/u/apps/opt/intel/2019u2 +++ export NCAR_ROOT_INTEL +++ NCAR_ROOT_MPT=/glade/u/apps/ch/opt/mpt/2.19 +++ export NCAR_ROOT_MPT +++ NCAR_ROOT_NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/ +++ export NCAR_ROOT_NETCDF +++ NCAR_WRAPPER_MPI=/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi +++ export NCAR_WRAPPER_MPI +++ NCEPLIBS_DIR=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19 +++ export NCEPLIBS_DIR +++ NEMSIO_INC=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include +++ export NEMSIO_INC +++ NEMSIO_LIB=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a +++ export NEMSIO_LIB +++ NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/ +++ export NETCDF +++ __LMOD_REF_COUNT_NLSPATH=/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/lib/intel64/locale/%l_%t/%N:1 +++ export __LMOD_REF_COUNT_NLSPATH +++ NLSPATH=/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/lib/intel64/locale/%l_%t/%N +++ export NLSPATH +++ OMP_NUM_THREADS=1 +++ export OMP_NUM_THREADS +++ OMP_STACKSIZE=64000K +++ export OMP_STACKSIZE +++ OSHCC_CC=icc +++ export OSHCC_CC +++ OSHCXX_CXX=icpc +++ export OSHCXX_CXX +++ OSHF90_F90=ifort +++ export OSHF90_F90 +++ __LMOD_REF_COUNT_PATH='/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/bin:1;/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/bin:1;/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2:1;/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi:1;/glade/u/apps/ch/opt/mpt/2.19/bin:1;/glade/u/apps/opt/intel/2019u2/vtune_amplifier/bin64:1;/glade/u/apps/opt/intel/2019u2/inspector/bin64:1;/glade/u/apps/opt/intel/2019u2/advisor/bin64:1;/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/bin/intel64:1;/glade/u/apps/opt/globus-utils:1;/glade/u/apps/ch/opt/usr/bin:1;/ncar/opt/slurm/latest/bin:1;/opt/clmgr/sbin:1;/opt/clmgr/bin:1;/opt/sgi/sbin:1;/opt/sgi/bin:1;/glade/u/apps/ch/opt/lmod/8.1.7/bin:1;/glade/u/home/heinzell/bin:1;/usr/local/bin:1;/usr/bin:1;/bin:2;/usr/bin/X11:1;/usr/games:1;/opt/ibutils/bin:1;/usr/lib/mit/bin:1;/opt/pbs/bin:1;/sbin:1;/glade/u/apps/opt/hpss/hpss-client.5.0.2.p5/bin:1;/glade/u/apps/ch/os/usr/bin:1' +++ export __LMOD_REF_COUNT_PATH +++ PATH=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/bin:/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/bin:/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2:/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi:/glade/u/apps/ch/opt/mpt/2.19/bin:/glade/u/apps/opt/intel/2019u2/vtune_amplifier/bin64:/glade/u/apps/opt/intel/2019u2/inspector/bin64:/glade/u/apps/opt/intel/2019u2/advisor/bin64:/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/bin/intel64:/glade/u/apps/opt/globus-utils:/glade/u/apps/ch/opt/usr/bin:/ncar/opt/slurm/latest/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/glade/u/apps/ch/opt/lmod/8.1.7/bin:/glade/u/home/heinzell/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games:/opt/ibutils/bin:/usr/lib/mit/bin:/opt/pbs/bin:/sbin:/glade/u/apps/opt/hpss/hpss-client.5.0.2.p5/bin:/glade/u/apps/ch/os/usr/bin +++ export PATH +++ PERL5LIB=/glade/u/apps/ch/os/usr/lib/perl5/5.18.2/ +++ export PERL5LIB +++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/lib/pkgconfig:1 +++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH +++ PKG_CONFIG_PATH=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/lib/pkgconfig +++ export PKG_CONFIG_PATH +++ SIONLIB=/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19 +++ export SIONLIB +++ SIONLIB_INC='-I/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/include -I/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/include/mod_64' +++ export SIONLIB_INC +++ SIONLIB_LIB='-L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none' +++ export SIONLIB_LIB +++ SP_LIBd=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a +++ export SP_LIBd +++ VTUNE_AMPLIFIER_2019_DIR=/glade/u/apps/opt/intel/2019u2/vtune_amplifier +++ export VTUNE_AMPLIFIER_2019_DIR +++ W3EMC_LIBd=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a +++ export W3EMC_LIBd +++ W3NCO_LIBd=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a +++ export W3NCO_LIBd +++ WRFIO_NCD_LARGE_FILE_SUPPORT=1 +++ export WRFIO_NCD_LARGE_FILE_SUPPORT +++ __LMOD_REF_COUNT__LMFILES_='/glade/u/apps/ch/modulefiles/default/idep/ncarenv/1.3.lua:1;/glade/u/apps/ch/modulefiles/default/compilers/intel/19.0.2.lua:1;/glade/u/apps/ch/modulefiles/default/intel/19.0.2/mpt/2.19.lua:1;/glade/u/apps/ch/modulefiles/default/intel/19.0.2/ncarcompilers/0.5.0.lua:1;/glade/u/apps/ch/modulefiles/default/intel/19.0.2/netcdf/4.6.3.lua:1;/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19/esmf/8.0.0:1;/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19/NCEPlibs/9.9.9:1;/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19/SIONlib/1.7.4:1;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel/fv3:1' +++ export __LMOD_REF_COUNT__LMFILES_ +++ _LMFILES_=/glade/u/apps/ch/modulefiles/default/idep/ncarenv/1.3.lua:/glade/u/apps/ch/modulefiles/default/compilers/intel/19.0.2.lua:/glade/u/apps/ch/modulefiles/default/intel/19.0.2/mpt/2.19.lua:/glade/u/apps/ch/modulefiles/default/intel/19.0.2/ncarcompilers/0.5.0.lua:/glade/u/apps/ch/modulefiles/default/intel/19.0.2/netcdf/4.6.3.lua:/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19/esmf/8.0.0:/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19/NCEPlibs/9.9.9:/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19/SIONlib/1.7.4:/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel/fv3 +++ export _LMFILES_ +++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJtcHQiLH0sbVQ9e05DRVBsaWJzPXtbImZuIl09Ii9nbGFkZS9wL3JhbC9qbnRwL0dNVEIvdG9vbHMvbW9kdWxlZmlsZXMvaW50ZWwtMTkuMC4yL21wdC0yLjE5L05DRVBsaWJzLzkuOS45IixbImZ1bGxOYW1lIl09Ik5DRVBsaWJzLzkuOS45IixbImxvYWRPcmRlciJdPTcscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iTkNFUGxpYnMvOS45LjkiLH0sU0lPTmxpYj17WyJmbiJdPSIvZ2xhZGUvcC9y +++ export _ModuleTable001_ +++ _ModuleTable002_=YWwvam50cC9HTVRCL3Rvb2xzL21vZHVsZWZpbGVzL2ludGVsLTE5LjAuMi9tcHQtMi4xOS9TSU9ObGliLzEuNy40IixbImZ1bGxOYW1lIl09IlNJT05saWIvMS43LjQiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJTSU9ObGliLzEuNy40Iix9LGVzbWY9e1siZm4iXT0iL2dsYWRlL3AvcmFsL2pudHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9pbnRlbC0xOS4wLjIvbXB0LTIuMTkvZXNtZi84LjAuMCIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wIixbImxvYWRPcmRlciJdPTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNt +++ export _ModuleTable002_ +++ _ModuleTable003_=Zi84LjAuMCIsfSxmdjM9e1siZm4iXT0iL2dsYWRlL3dvcmsvaGVpbnplbGwvZnYzL3Vmcy13ZWF0aGVyLW1vZGVsL3Vmcy13ZWF0aGVyLW1vZGVsX3B1YmxpYy1yZWxlYXNlX3VwZGF0ZS1mcm9tLWR0Yy1kZXZlbG9wLTIwMTkxMjA5L2ludGVsL21vZHVsZWZpbGVzL2NoZXllbm5lLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09OSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0saW50ZWw9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVycy9pbnRlbC8xOS4wLjIubHVhIixbImZ1bGxOYW1lIl09ImludGVsLzE5LjAuMiIsWyJs +++ export _ModuleTable003_ +++ _ModuleTable004_=b2FkT3JkZXIiXT0yLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImludGVsLzE5LjAuMiIsfSxtcHQ9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2ludGVsLzE5LjAuMi9tcHQvMi4xOS5sdWEiLFsiZnVsbE5hbWUiXT0ibXB0LzIuMTkiLFsibG9hZE9yZGVyIl09Myxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJtcHQvMi4xOSIsfSxuY2FyY29tcGlsZXJzPXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pbnRlbC8xOS4wLjIvbmNhcmNvbXBpbGVycy8wLjUuMC5sdWEiLFsiZnVsbE5h +++ export _ModuleTable004_ +++ _ModuleTable005_=bWUiXT0ibmNhcmNvbXBpbGVycy8wLjUuMCIsWyJsb2FkT3JkZXIiXT00LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5jYXJjb21waWxlcnMvMC41LjAiLH0sbmNhcmVudj17WyJmbiJdPSIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcC9uY2FyZW52LzEuMy5sdWEiLFsiZnVsbE5hbWUiXT0ibmNhcmVudi8xLjMiLFsibG9hZE9yZGVyIl09MSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuY2FyZW52LzEuMyIsfSxuZXRjZGY9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2ludGVsLzE5LjAu +++ export _ModuleTable005_ +++ _ModuleTable006_=Mi9uZXRjZGYvNC42LjMubHVhIixbImZ1bGxOYW1lIl09Im5ldGNkZi80LjYuMyIsWyJsb2FkT3JkZXIiXT01LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZi80LjYuMyIsfSx9LG1wYXRoQT17Ii9nbGFkZS93b3JrL2hlaW56ZWxsL2Z2My91ZnMtd2VhdGhlci1tb2RlbC91ZnMtd2VhdGhlci1tb2RlbF9wdWJsaWMtcmVsZWFzZV91cGRhdGUtZnJvbS1kdGMtZGV2ZWxvcC0yMDE5MTIwOS9pbnRlbC9tb2R1bGVmaWxlcy9jaGV5ZW5uZS5pbnRlbCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRl +++ export _ModuleTable006_ +++ _ModuleTable007_=cCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pbnRlbC8xOS4wLjIiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvbXB0LzIuMTkvaW50ZWwvMTkuMC4yIiwiL2dsYWRlL3AvcmFsL2pudHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9pbnRlbC0xOS4wLjIvbXB0LTIuMTkiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVyczovZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfQ== +++ export _ModuleTable007_ +++ _ModuleTable_Sz_=7 +++ export _ModuleTable_Sz_ +++ : -s sh ++ eval ++ module list +++ /glade/u/apps/ch/opt/lmod/8.1.7/lmod/lmod/libexec/lmod bash list + +Currently Loaded Modules: + 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 + 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 + 3) mpt/2.19 6) esmf/8.0.0 9) fv3 + + + ++ eval 'MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel:/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep:/glade/u/apps/ch/modulefiles/default/intel/19.0.2:/glade/u/apps/ch/modulefiles/default/mpt/2.19/intel/19.0.2:/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19;' export 'MODULEPATH;' '_ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJtcHQiLH0sbVQ9e05DRVBsaWJzPXtbImZuIl09Ii9nbGFkZS9wL3JhbC9qbnRwL0dNVEIvdG9vbHMvbW9kdWxlZmlsZXMvaW50ZWwtMTkuMC4yL21wdC0yLjE5L05DRVBsaWJzLzkuOS45IixbImZ1bGxOYW1lIl09Ik5DRVBsaWJzLzkuOS45IixbImxvYWRPcmRlciJdPTcscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iTkNFUGxpYnMvOS45LjkiLH0sU0lPTmxpYj17WyJmbiJdPSIvZ2xhZGUvcC9y;' export '_ModuleTable001_;' '_ModuleTable002_=YWwvam50cC9HTVRCL3Rvb2xzL21vZHVsZWZpbGVzL2ludGVsLTE5LjAuMi9tcHQtMi4xOS9TSU9ObGliLzEuNy40IixbImZ1bGxOYW1lIl09IlNJT05saWIvMS43LjQiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJTSU9ObGliLzEuNy40Iix9LGVzbWY9e1siZm4iXT0iL2dsYWRlL3AvcmFsL2pudHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9pbnRlbC0xOS4wLjIvbXB0LTIuMTkvZXNtZi84LjAuMCIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wIixbImxvYWRPcmRlciJdPTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNt;' export '_ModuleTable002_;' '_ModuleTable003_=Zi84LjAuMCIsfSxmdjM9e1siZm4iXT0iL2dsYWRlL3dvcmsvaGVpbnplbGwvZnYzL3Vmcy13ZWF0aGVyLW1vZGVsL3Vmcy13ZWF0aGVyLW1vZGVsX3B1YmxpYy1yZWxlYXNlX3VwZGF0ZS1mcm9tLWR0Yy1kZXZlbG9wLTIwMTkxMjA5L2ludGVsL21vZHVsZWZpbGVzL2NoZXllbm5lLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09OSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0saW50ZWw9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVycy9pbnRlbC8xOS4wLjIubHVhIixbImZ1bGxOYW1lIl09ImludGVsLzE5LjAuMiIsWyJs;' export '_ModuleTable003_;' '_ModuleTable004_=b2FkT3JkZXIiXT0yLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImludGVsLzE5LjAuMiIsfSxtcHQ9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2ludGVsLzE5LjAuMi9tcHQvMi4xOS5sdWEiLFsiZnVsbE5hbWUiXT0ibXB0LzIuMTkiLFsibG9hZE9yZGVyIl09Myxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJtcHQvMi4xOSIsfSxuY2FyY29tcGlsZXJzPXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pbnRlbC8xOS4wLjIvbmNhcmNvbXBpbGVycy8wLjUuMC5sdWEiLFsiZnVsbE5h;' export '_ModuleTable004_;' '_ModuleTable005_=bWUiXT0ibmNhcmNvbXBpbGVycy8wLjUuMCIsWyJsb2FkT3JkZXIiXT00LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5jYXJjb21waWxlcnMvMC41LjAiLH0sbmNhcmVudj17WyJmbiJdPSIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcC9uY2FyZW52LzEuMy5sdWEiLFsiZnVsbE5hbWUiXT0ibmNhcmVudi8xLjMiLFsibG9hZE9yZGVyIl09MSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuY2FyZW52LzEuMyIsfSxuZXRjZGY9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2ludGVsLzE5LjAu;' export '_ModuleTable005_;' '_ModuleTable006_=Mi9uZXRjZGYvNC42LjMubHVhIixbImZ1bGxOYW1lIl09Im5ldGNkZi80LjYuMyIsWyJsb2FkT3JkZXIiXT01LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZi80LjYuMyIsfSx9LG1wYXRoQT17Ii9nbGFkZS93b3JrL2hlaW56ZWxsL2Z2My91ZnMtd2VhdGhlci1tb2RlbC91ZnMtd2VhdGhlci1tb2RlbF9wdWJsaWMtcmVsZWFzZV91cGRhdGUtZnJvbS1kdGMtZGV2ZWxvcC0yMDE5MTIwOS9pbnRlbC9tb2R1bGVmaWxlcy9jaGV5ZW5uZS5pbnRlbCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRl;' export '_ModuleTable006_;' '_ModuleTable007_=cCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pbnRlbC8xOS4wLjIiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvbXB0LzIuMTkvaW50ZWwvMTkuMC4yIiwiL2dsYWRlL3AvcmFsL2pudHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9pbnRlbC0xOS4wLjIvbXB0LTIuMTkiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVyczovZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfQ==;' export '_ModuleTable007_;' '_ModuleTable_Sz_=7;' export '_ModuleTable_Sz_;' +++ MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel:/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep:/glade/u/apps/ch/modulefiles/default/intel/19.0.2:/glade/u/apps/ch/modulefiles/default/mpt/2.19/intel/19.0.2:/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19 +++ export MODULEPATH +++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJtcHQiLH0sbVQ9e05DRVBsaWJzPXtbImZuIl09Ii9nbGFkZS9wL3JhbC9qbnRwL0dNVEIvdG9vbHMvbW9kdWxlZmlsZXMvaW50ZWwtMTkuMC4yL21wdC0yLjE5L05DRVBsaWJzLzkuOS45IixbImZ1bGxOYW1lIl09Ik5DRVBsaWJzLzkuOS45IixbImxvYWRPcmRlciJdPTcscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iTkNFUGxpYnMvOS45LjkiLH0sU0lPTmxpYj17WyJmbiJdPSIvZ2xhZGUvcC9y +++ export _ModuleTable001_ +++ _ModuleTable002_=YWwvam50cC9HTVRCL3Rvb2xzL21vZHVsZWZpbGVzL2ludGVsLTE5LjAuMi9tcHQtMi4xOS9TSU9ObGliLzEuNy40IixbImZ1bGxOYW1lIl09IlNJT05saWIvMS43LjQiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJTSU9ObGliLzEuNy40Iix9LGVzbWY9e1siZm4iXT0iL2dsYWRlL3AvcmFsL2pudHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9pbnRlbC0xOS4wLjIvbXB0LTIuMTkvZXNtZi84LjAuMCIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wIixbImxvYWRPcmRlciJdPTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNt +++ export _ModuleTable002_ +++ _ModuleTable003_=Zi84LjAuMCIsfSxmdjM9e1siZm4iXT0iL2dsYWRlL3dvcmsvaGVpbnplbGwvZnYzL3Vmcy13ZWF0aGVyLW1vZGVsL3Vmcy13ZWF0aGVyLW1vZGVsX3B1YmxpYy1yZWxlYXNlX3VwZGF0ZS1mcm9tLWR0Yy1kZXZlbG9wLTIwMTkxMjA5L2ludGVsL21vZHVsZWZpbGVzL2NoZXllbm5lLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09OSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0saW50ZWw9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVycy9pbnRlbC8xOS4wLjIubHVhIixbImZ1bGxOYW1lIl09ImludGVsLzE5LjAuMiIsWyJs +++ export _ModuleTable003_ +++ _ModuleTable004_=b2FkT3JkZXIiXT0yLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImludGVsLzE5LjAuMiIsfSxtcHQ9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2ludGVsLzE5LjAuMi9tcHQvMi4xOS5sdWEiLFsiZnVsbE5hbWUiXT0ibXB0LzIuMTkiLFsibG9hZE9yZGVyIl09Myxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJtcHQvMi4xOSIsfSxuY2FyY29tcGlsZXJzPXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pbnRlbC8xOS4wLjIvbmNhcmNvbXBpbGVycy8wLjUuMC5sdWEiLFsiZnVsbE5h +++ export _ModuleTable004_ +++ _ModuleTable005_=bWUiXT0ibmNhcmNvbXBpbGVycy8wLjUuMCIsWyJsb2FkT3JkZXIiXT00LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5jYXJjb21waWxlcnMvMC41LjAiLH0sbmNhcmVudj17WyJmbiJdPSIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcC9uY2FyZW52LzEuMy5sdWEiLFsiZnVsbE5hbWUiXT0ibmNhcmVudi8xLjMiLFsibG9hZE9yZGVyIl09MSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuY2FyZW52LzEuMyIsfSxuZXRjZGY9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2ludGVsLzE5LjAu +++ export _ModuleTable005_ +++ _ModuleTable006_=Mi9uZXRjZGYvNC42LjMubHVhIixbImZ1bGxOYW1lIl09Im5ldGNkZi80LjYuMyIsWyJsb2FkT3JkZXIiXT01LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZi80LjYuMyIsfSx9LG1wYXRoQT17Ii9nbGFkZS93b3JrL2hlaW56ZWxsL2Z2My91ZnMtd2VhdGhlci1tb2RlbC91ZnMtd2VhdGhlci1tb2RlbF9wdWJsaWMtcmVsZWFzZV91cGRhdGUtZnJvbS1kdGMtZGV2ZWxvcC0yMDE5MTIwOS9pbnRlbC9tb2R1bGVmaWxlcy9jaGV5ZW5uZS5pbnRlbCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRl +++ export _ModuleTable006_ +++ _ModuleTable007_=cCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pbnRlbC8xOS4wLjIiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvbXB0LzIuMTkvaW50ZWwvMTkuMC4yIiwiL2dsYWRlL3AvcmFsL2pudHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9pbnRlbC0xOS4wLjIvbXB0LTIuMTkiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVyczovZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfQ== +++ export _ModuleTable007_ +++ _ModuleTable_Sz_=7 +++ export _ModuleTable_Sz_ +++ : -s sh ++ eval ++ cd build_fv3_1 ++ cmake /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -- The C compiler identification is Intel 19.0.0.20190117 -- The CXX compiler identification is Intel 19.0.0.20190117 +-- The Fortran compiler identification is Intel 19.0.0.20190117 -- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -- works -- Detecting C compiler ABI info @@ -2270,14 +2079,39 @@ Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMS -- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done --- The Fortran compiler identification is Intel 19.0.0.20190117 -- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -- works -- Detecting Fortran compiler ABI info -- Detecting Fortran compiler ABI info - done -- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 supports Fortran 90 -- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 supports Fortran 90 -- yes --- Dynamics compiled with 32-bit option, adjust fv_sat_adj types +-- Found MPI_C: /usr/lib64/libpthread.so;/glade/u/apps/ch/opt/mpt/2.19/lib/libmpi.so +-- Found MPI_CXX: /usr/lib64/libpthread.so;/glade/u/apps/ch/opt/mpt/2.19/lib/libmpi++.so;/glade/u/apps/ch/opt/mpt/2.19/lib/libmpi.so +-- Found MPI_Fortran: /usr/lib64/libpthread.so;/glade/u/apps/ch/opt/mpt/2.19/lib/libmpi.so +ESMFMKFILE: /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib/esmf.mk + Found ESMF: +ESMF_VERSION_MAJOR: 8 +ESMF_F90COMPILEPATHS: /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod;/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include;/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include +ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib +ESMF_F90ESMFLINKLIBS: -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf +-- Found ESMF: /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod;/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include;/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include (found version "8.0.0") + +Setting configuration for cheyenne.intel + +C compiler: Intel 19.0.0.20190117 (mpicc) +CXX compiler: Intel 19.0.0.20190117 (mpicxx) +Fortran compiler: Intel 19.0.0.20190117 (mpif90) + +DEBUG is disabled +REPRO is disabled +32BIT is disabled +OPENMP is ENABLED +AVX2 is ENABLED +INLINE_POST is disabled + + +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 @@ -2297,3027 +2131,611 @@ Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMS -- 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 SCHEMES from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90 +INFOGot CCPP_SCHEMES from environment variable: /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfpbltq.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfscuq.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/satmedmfvdifq.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/moninshoc.f +INFOGot CAPS from environment variable: /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1/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: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". +-- Build files have been written to: /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_1 ++ make -j 3 Scanning dependencies of target ccpp -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields_idx.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_utils.c -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.c -[ 8%] Linking Fortran static library libccpp.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar qc libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/test_fields.dir/test_fields.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_fields.c -[ 9%] Linking C executable test_fields -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -O2 -fPIC -qopenmp -qopenmp CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -[ 10%] Linking Fortran executable test_check -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_check.dir/test_check.f90.o -o test_check ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 11%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -[ 12%] Linking Fortran executable test_init_finalize -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". +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 +[ 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. +[ 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 +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%] Linking Fortran static library libfv3cpl.a +[ 3%] Built target fv3cpl +[ 3%] 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%] 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 +[ 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. Scanning dependencies of target ccppphys -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 32 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o.provides.build -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 99%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 99%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -[100%] Linking Fortran static library libccppphys.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/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_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/mfscu.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/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.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 CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o -/usr/bin/ranlib libccppphys.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[2]: Nothing to be done for 'preinstall'. -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Bitforbit" --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccpp.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config-bitforbit.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_utils.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_errors.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_strings.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_suite.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_types.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_api.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccppphys.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config-bitforbit.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_stochastics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_fast_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_stochastics_cap.mod -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_cplfields.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=Y # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_data.F90 -o CCPP_layer/CCPP_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=Y # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... - -Build CCPP layer ... - -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DOVERLOAD_R4 CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c FV3GFS_io.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_write_internal_state.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c post_gfs_stub.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o +[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o +[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o +[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o +[ 5%] 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 +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/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 +[ 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 +[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o +[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o +[ 7%] 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. +[ 7%] 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/gfs_phy_tracer_config.F.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_BL_MYJPBL.F90.o +[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o +[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o +[ 9%] 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. +[ 10%] 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/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o +[ 12%] 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/h2ophys.f.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 FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o +[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o +[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o +[ 15%] 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 +[ 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 +[ 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 +[ 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/gfdl_fv_sat_adj.F90.o +[ 17%] 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/gfdl_cloud_microphys.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/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 +[ 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/ccpp_FV3_GFS_v15p2_fast_physics_cap.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 +[ 24%] 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 +[ 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/GFS_time_vary_pre.fv3.F90.o +[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_fast_physics_cap.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 +[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o +[ 29%] 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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +[ 30%] 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 +[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.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. +[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.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 +[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o +[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o +[ 35%] 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/sfc_nst.f.o +[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o +[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.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 FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o +[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o +[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.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 FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o +[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o +[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.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 FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_stochastics_cap.F90.o +[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o +[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o +[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o +[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.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/physics/GFS_rrtmg_setup.F90.o +[ 38%] 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 +[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_stochastics_cap.F90.o +[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o +[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_physics_cap.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 +[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o +[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_radiation_cap.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_v15p2_time_vary_cap.F90.o +[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o +[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_physics_cap.F90.o +[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o +[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o +[ 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/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 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 CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o +[ 45%] 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. +[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_radiation_cap.F90.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/ccpp_FV3_GFS_v16beta_time_vary_cap.F90.o +[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_cap.F90.o +[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_cap.F90.o +[ 45%] 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 FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o +[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o +[ 46%] 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 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 CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o +[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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 -Converting pointers to allocatable components -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fv3_config.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c time_utils.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c atmos_model.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fcst_grid_comp.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; \ -gmake nems REPRO=Y \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL CCPP_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 02:32:17 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 02:32:17 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 02:32:17 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 02:32:17 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 02:32:17 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 02:32:17 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 02:32:17 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 02:32:17 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 02:32:17 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 02:32:17 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=ifort -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libccppdriver.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libstochastic_physics.a -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -L/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_10.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_10.exe +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o +[ 46%] 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. +[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o +[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o +[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o +[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o +[ 48%] 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. +[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o +[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o +[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o +[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o +[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o +[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o +[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o +[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o +[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o +[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o +[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o +[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o +[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o +[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o +[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o +[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o +[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.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 CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o +[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o +[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o +[ 56%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o +[ 56%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o +[ 56%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o +[ 57%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o +[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o +[ 58%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.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/module_MYNNPBL_wrapper.F90.o +[ 58%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o +[ 59%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o +[ 59%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o +[ 59%] Linking Fortran static library FMS/libfms.a +[ 59%] Built target fms +[ 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/moninshoc.f.o +[ 59%] 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 +[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o +[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o +[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o +[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o +[ 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 +[ 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/shinhongvdif.F90.o +[ 61%] 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 +[ 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 +[ 65%] 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 +[ 66%] 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 +[ 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 +[ 68%] 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 +[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.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/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/physics/physcons.F90.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/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 +[ 71%] 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_diagnostics.F90.o +[ 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_restart.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/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/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 +[ 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/io/CMakeFiles/io.dir/module_write_nemsio.F90.o +Scanning dependencies of target fv3core +[ 75%] 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. +[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o +[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o +[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o +[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs_stub.F90.o +[ 78%] 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/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 +[ 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/sorted_index.F90.o +[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.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/model/fv_sg.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. +[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.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/fv_mapz.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/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 +[ 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 +[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o +[ 83%] 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 +[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o +[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o +[ 85%] 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/dyn_core.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/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 +[ 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/spectral_layout.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_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 +[ 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 +[ 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/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 +[ 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 +[100%] Built target NEMS.exe ++ mv NEMS.exe ../fv3_1.exe ++ cp /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel/fv3 ../modules.fv3_1 ++ cd .. + '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_10 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' NEMS_BUILDOPT=REPRO=Y clean -Will copy modules.nems and NEMS.x as fv3_10 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -+ elapsed=1062 -+ echo 'Elapsed time 1062 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y finished' -Elapsed time 1062 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y finished ++ rm -rf build_fv3_1 ++ elapsed=632 ++ echo 'Elapsed time 632 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta finished' +Elapsed time 632 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta finished + SECONDS=0 ++++ readlink -f ./compile_cmake.sh +++ dirname /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/compile_cmake.sh ++ readonly MYDIR=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests ++ MYDIR=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests ++ readonly ARGC=4 ++ ARGC=4 ++ cd /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests ++ [[ 4 -eq 0 ]] + [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.intel -+ BUILD_TARGET=cheyenne.intel -+ readonly 'MAKE_OPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' -+ readonly BUILD_NAME=fv3_11 -+ BUILD_NAME=fv3_11 -+ readonly clean_before=YES ++ PATHTR=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel ++ MACHINE_ID=cheyenne.intel ++ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y' ++ BUILD_NAME=fv3_2 + clean_before=YES -+ readonly clean_after=YES + clean_after=YES -+ hostname -cheyenne6 -+ 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 cheyenne.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 cheyenne.intel -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake ++ BUILD_DIR=build_fv3_2 + [[ cheyenne.intel == cheyenne.* ]] + MAKE_THREADS=3 + MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ 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* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\W\W\3\=\Y* ]] -+ [[ 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 == *\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* ]] -+ NEMS_BUILDOPT=REPRO=Y ++ hostname +cheyenne6 ++ cd /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests ++ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y into fv3_2.exe on cheyenne.intel' +Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y into fv3_2.exe on cheyenne.intel + '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_11 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' NEMS_BUILDOPT=REPRO=Y distclean -Will copy modules.nems and NEMS.x as fv3_11 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include" ; \ -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 --clean -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: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_11 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' NEMS_BUILDOPT=REPRO=Y build -Will copy modules.nems and NEMS.x as fv3_11 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/modulefiles/cheyenne.intel/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_11" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_11 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/conf/configure.fv3.cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ -exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/threadloc.c -o ../mpp/threadloc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_grid.F90 -o ../diag_manager/diag_grid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh cheyenne.intel "$PATH_CCPP" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk \ - "REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"" NO NO ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/include ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 ++ rm -rf build_fv3_2 ++ mkdir -p build_fv3_2 ++ 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/ .*//' +++ sed 's/.* SUITES=//' ++ SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta ++ cd /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel ++ ./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_2/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 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 @@ -5346,7 +2764,7 @@ INFO: Converting local name evap_land of variable kinematic_surface_upward_laten 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 @@ -5660,6 +3078,7 @@ INFO: Converting local name zorlo of variable surface_roughness_length_over_ocea 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 @@ -5889,7 +3308,6 @@ INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_mom 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 lgocart of variable flag_gocart 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 @@ -6051,7 +3469,7 @@ INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux 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 save_q of variable tracer_concentration_save 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 runoff of variable total_runoff 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 @@ -6222,7 +3640,7 @@ INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from 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 islmsk_cice of variable sea_land_ice_mask_cice 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 @@ -6361,7 +3779,7 @@ INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of var 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 runoff of variable total_runoff 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 @@ -6473,6 +3891,7 @@ INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_ 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 @@ -6520,6 +3939,7 @@ INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ 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 qgrs of variable tracer_concentration 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 con_t0c of variable temperature_at_zero_celsius from new to old metadata @@ -6632,7 +4052,7 @@ INFO: Converting local name restart of variable flag_for_restart from new to old 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html +INFO: Metadata table for model FV3 written to tests/build_fv3_2/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 @@ -6670,8 +4090,7 @@ 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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post +INFO: Parsed tables in scheme zhaocarr_precpd INFO: Parsed tables in scheme noahmpdrv INFO: Parsed tables in scheme myjpbl_wrapper INFO: Parsed tables in scheme GFS_surface_generic_pre @@ -6684,7 +4103,7 @@ 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 zhaocarr_precpd +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 @@ -6700,7 +4119,7 @@ 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_noahmp_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 @@ -6710,6 +4129,7 @@ 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 @@ -6720,7 +4140,6 @@ INFO: Parsed tables in scheme mp_thompson_post 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 gwdps_post INFO: Parsed tables in scheme cires_ugwp INFO: Parsed tables in scheme get_prs_fv3 INFO: Parsed tables in scheme get_phi_fv3 @@ -6730,9 +4149,7 @@ 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 GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post INFO: Parsed tables in scheme sfc_cice INFO: Parsed tables in scheme mynnrad_post INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre @@ -6752,8 +4169,6 @@ INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_cl 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 @@ -6762,36 +4177,27 @@ 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 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_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_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_water_to_rain INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep 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 @@ -6813,16 +4219,10 @@ 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 explicit_rainfall_rate_from_previous_timestep 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 @@ -6830,50 +4230,39 @@ INFO: filtering out variable flag_flux_form_CS INFO: filtering out variable flag_for_aerosol_input_MG 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_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_restart INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics INFO: filtering out variable flag_for_shoc_after_convection 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 graupel_precipitation_rate_from_previous_timestep 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_precipitation_rate_from_previous_timestep 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 @@ -6883,7 +4272,6 @@ 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 @@ -6899,7 +4287,6 @@ 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 maximum_column_heating_rate INFO: filtering out variable maximum_mass_flux INFO: filtering out variable maximum_updraft_velocity_at_cloud_base @@ -6935,30 +4322,20 @@ 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 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_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 @@ -6972,19 +4349,13 @@ 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_precipitation_rate_from_previous_timestep 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_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 @@ -7000,7 +4371,6 @@ 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 @@ -7009,7 +4379,6 @@ 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 @@ -7024,12 +4393,9 @@ INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_mo 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 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 @@ -7038,10 +4404,6 @@ 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 @@ -7053,7 +4415,6 @@ 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 @@ -7069,23 +4430,329 @@ 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex +INFO: Metadata table for model FV3 written to tests/build_fv3_2/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 before entering 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 before entering 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 before entering MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 162 schemes to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.mk, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.sh +INFO: Added 164 schemes to tests/build_fv3_2/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_2/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_2/FV3/ccpp/physics/CCPP_SCHEMES.sh INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics ... +INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_2/FV3/ccpp/physics ... INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 10 auto-generated caps to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.mk and /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.cmake +INFO: Added 12 auto-generated caps to tests/build_fv3_2/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_2/FV3/ccpp/physics/CCPP_CAPS.cmake INFO: CCPP prebuild step completed successfully. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ ./build_ccpp.sh cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk 'REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp' NO NO -MACHINE_ID=cheyenne.intel is valid. -Compilers set for cheyenne.intel. -Obtained ESMF_LIB=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib from /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -DNETCDF_DIR=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/ -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DOPENMP=ON -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... ++ source build_fv3_2/FV3/ccpp/physics/CCPP_SCHEMES.sh +++ export 'CCPP_SCHEMES=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfpbltq.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfscuq.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/satmedmfvdifq.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/moninshoc.f' +++ CCPP_SCHEMES='/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfpbltq.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfscuq.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/satmedmfvdifq.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/moninshoc.f' ++ source build_fv3_2/FV3/ccpp/physics/CCPP_CAPS.sh +++ export 'CCPP_CAPS=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_stochastics_cap.F90' +++ CCPP_CAPS='/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_stochastics_cap.F90' ++ source build_fv3_2/FV3/ccpp/physics/CCPP_STATIC_API.sh +++ export CCPP_STATIC_API=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_static_api.F90 +++ CCPP_STATIC_API=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/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* ]] +++ 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 /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/NEMS/src/conf/module-setup.sh.inc +++ __ms_function_name=setup__test_function__4396 +++ eval 'setup__test_function__4396() { /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__4396 | 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 ]] +++ [[ -d /dcom ]] +++ [[ -L /usrx ]] +++ [[ -d /glade ]] +++ eval module help +++ module purge ++++ /glade/u/apps/ch/opt/lmod/8.1.7/lmod/lmod/libexec/lmod bash purge +++ eval 'MODULEPATH=/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep;' export 'MODULEPATH;' '_ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvY29tcGlsZXJzOi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pZGVwIix9;' export '_ModuleTable001_;' '_ModuleTable_Sz_=1;' export '_ModuleTable_Sz_;' ++++ MODULEPATH=/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep ++++ export MODULEPATH ++++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvY29tcGlsZXJzOi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pZGVwIix9 ++++ export _ModuleTable001_ ++++ _ModuleTable_Sz_=1 ++++ export _ModuleTable_Sz_ ++++ : -s sh +++ eval +++ unset __ms_shell +++ unset __ms_ksh_test +++ unset __ms_bash_test +++ unset setup__test_function__4396 +++ unset __ms_function_name ++ [[ cheyenne.intel == macosx.* ]] ++ [[ cheyenne.intel == linux.* ]] ++ module use /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel +++ /glade/u/apps/ch/opt/lmod/8.1.7/lmod/lmod/libexec/lmod bash use /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel ++ eval '__LMOD_REF_COUNT_MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel:1\;/glade/u/apps/ch/modulefiles/default/compilers:1\;/glade/u/apps/ch/modulefiles/default/idep:1;' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel:/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep;' export 'MODULEPATH;' '_ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9nbGFkZS93b3JrL2hlaW56ZWxsL2Z2My91ZnMtd2VhdGhlci1tb2RlbC91ZnMtd2VhdGhlci1tb2RlbF9wdWJsaWMtcmVsZWFzZV91cGRhdGUtZnJvbS1kdGMtZGV2ZWxvcC0yMDE5MTIwOS9pbnRlbC9tb2R1bGVmaWxlcy9jaGV5ZW5uZS5pbnRlbCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvZ2xhZGUvdS9hcHBz;' export '_ModuleTable001_;' '_ModuleTable002_=L2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvY29tcGlsZXJzOi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pZGVwIix9;' export '_ModuleTable002_;' '_ModuleTable_Sz_=2;' export '_ModuleTable_Sz_;' +++ __LMOD_REF_COUNT_MODULEPATH='/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel:1;/glade/u/apps/ch/modulefiles/default/compilers:1;/glade/u/apps/ch/modulefiles/default/idep:1' +++ export __LMOD_REF_COUNT_MODULEPATH +++ MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel:/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep +++ export MODULEPATH +++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9nbGFkZS93b3JrL2hlaW56ZWxsL2Z2My91ZnMtd2VhdGhlci1tb2RlbC91ZnMtd2VhdGhlci1tb2RlbF9wdWJsaWMtcmVsZWFzZV91cGRhdGUtZnJvbS1kdGMtZGV2ZWxvcC0yMDE5MTIwOS9pbnRlbC9tb2R1bGVmaWxlcy9jaGV5ZW5uZS5pbnRlbCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvZ2xhZGUvdS9hcHBz +++ export _ModuleTable001_ +++ _ModuleTable002_=L2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvY29tcGlsZXJzOi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pZGVwIix9 +++ export _ModuleTable002_ +++ _ModuleTable_Sz_=2 +++ export _ModuleTable_Sz_ +++ : -s sh ++ eval ++ module load fv3 +++ /glade/u/apps/ch/opt/lmod/8.1.7/lmod/lmod/libexec/lmod bash load fv3 ++ eval 'ADVISOR_2019_DIR=/glade/u/apps/opt/intel/2019u2/advisor;' export 'ADVISOR_2019_DIR;' 'BACIO_LIB4=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a;' export 'BACIO_LIB4;' 'CC=icc;' export 'CC;' 'CESMDATAROOT=/glade/p/cesmdata/cseg;' export 'CESMDATAROOT;' 'CESMROOT=/glade/p/cesm;' export 'CESMROOT;' 'CMAKE_CXX_COMPILER=mpicxx;' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER=mpicc;' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER=mpif90;' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform=cheyenne.intel;' export 'CMAKE_Platform;' 'COMPILER=intel;' export 'COMPILER;' 'COMPILER_VERSION=19.0.2;' export 'COMPILER_VERSION;' '__LMOD_REF_COUNT_CPATH=/glade/u/apps/ch/opt/mpt_fmods/2.19/intel/19.0.2:1\;/glade/u/apps/ch/opt/mpt/2.19/include:1;' export '__LMOD_REF_COUNT_CPATH;' 'CPATH=/glade/u/apps/ch/opt/mpt_fmods/2.19/intel/19.0.2:/glade/u/apps/ch/opt/mpt/2.19/include;' export 'CPATH;' 'CXX=icpc;' export 'CXX;' 'DASK_ROOT_CONFIG=/glade/u/apps/config/dask;' export 'DASK_ROOT_CONFIG;' 'ENV=/etc/profile.d/modules.sh;' export 'ENV;' 'ESMFMKFILE=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib/esmf.mk;' export 'ESMFMKFILE;' 'F77=ifort;' export 'F77;' 'F90=ifort;' export 'F90;' 'FC=ifort;' export 'FC;' '__LMOD_REF_COUNT_FPATH=/glade/u/apps/ch/opt/mpt/2.19/include:1;' export '__LMOD_REF_COUNT_FPATH;' 'FPATH=/glade/u/apps/ch/opt/mpt/2.19/include;' export 'FPATH;' 'INSPECTOR_2019_DIR=/glade/u/apps/opt/intel/2019u2/inspector;' export 'INSPECTOR_2019_DIR;' 'INTEL_BASE_PATH=/glade/u/apps/opt/intel/2019u2;' export 'INTEL_BASE_PATH;' 'INTEL_COMPILER_BASE_PATH=/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux;' export 'INTEL_COMPILER_BASE_PATH;' 'INTEL_LICENSE_FILE=28518@128.117.177.41;' export 'INTEL_LICENSE_FILE;' 'INTEL_MAJOR_VERSION=19.0;' export 'INTEL_MAJOR_VERSION;' 'INTEL_MINOR_VERSION=0.2;' export 'INTEL_MINOR_VERSION;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH=/glade/u/apps/ch/opt/mpt_fmods/2.19/intel/19.0.2:1\;/glade/u/apps/ch/opt/mpt/2.19/lib:1\;/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/lib/intel64:1\;/ncar/opt/slurm/latest/lib:1\;/glade/u/apps/ch/os/usr/lib64:1\;/glade/u/apps/ch/os/usr/lib:1\;/glade/u/apps/ch/os/lib64:1\;/glade/u/apps/ch/os/lib:1;' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=/glade/u/apps/ch/opt/mpt_fmods/2.19/intel/19.0.2:/glade/u/apps/ch/opt/mpt/2.19/lib:/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/lib/intel64:/ncar/opt/slurm/latest/lib:/glade/u/apps/ch/os/usr/lib64:/glade/u/apps/ch/os/usr/lib:/glade/u/apps/ch/os/lib64:/glade/u/apps/ch/os/lib;' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH=/glade/u/apps/ch/opt/mpt/2.19/lib:1;' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH=/glade/u/apps/ch/opt/mpt/2.19/lib;' export 'LIBRARY_PATH;' 'LMOD_COMPILER=intel;' export 'LMOD_COMPILER;' 'LMOD_COMPILER_VERSION=19.0.2;' export 'LMOD_COMPILER_VERSION;' 'LMOD_FAMILY_COMPILER=intel;' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION=19.0.2;' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI=mpt;' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION=2.19;' export 'LMOD_FAMILY_MPI_VERSION;' 'LMOD_MPI=mpt_fmods;' export 'LMOD_MPI;' 'LMOD_MPI_VERSION=2.19;' export 'LMOD_MPI_VERSION;' 'LM_LICENSE_FILE=28518@128.117.177.41;' export 'LM_LICENSE_FILE;' '__LMOD_REF_COUNT_LOADEDMODULES=ncarenv/1.3:1\;intel/19.0.2:1\;mpt/2.19:1\;ncarcompilers/0.5.0:1\;netcdf/4.6.3:1\;esmf/8.0.0:1\;NCEPlibs/9.9.9:1\;SIONlib/1.7.4:1\;fv3:1;' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES=ncarenv/1.3:intel/19.0.2:mpt/2.19:ncarcompilers/0.5.0:netcdf/4.6.3:esmf/8.0.0:NCEPlibs/9.9.9:SIONlib/1.7.4:fv3;' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/share/man:1\;/glade/u/apps/ch/opt/mpt/2.19/man:1\;/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/man/common:1\;/ncar/opt/slurm/latest/share/man:1\;/usr/local/man:1\;/usr/share/man:1\;/opt/pbs/share/man:1\;/opt/clmgr/man:1\;/opt/sgi/share/man:1;' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/share/man:/glade/u/apps/ch/opt/mpt/2.19/man:/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/man/common:/ncar/opt/slurm/latest/share/man:/usr/local/man:/usr/share/man:/opt/pbs/share/man:/opt/clmgr/man:/opt/sgi/share/man;' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel:1\;/glade/u/apps/ch/modulefiles/default/compilers:1\;/glade/u/apps/ch/modulefiles/default/idep:1\;/glade/u/apps/ch/modulefiles/default/intel/19.0.2:1\;/glade/u/apps/ch/modulefiles/default/mpt/2.19/intel/19.0.2:1\;/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19:1;' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel:/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep:/glade/u/apps/ch/modulefiles/default/intel/19.0.2:/glade/u/apps/ch/modulefiles/default/mpt/2.19/intel/19.0.2:/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19;' export 'MODULEPATH;' 'MPICC_CC=icc;' export 'MPICC_CC;' 'MPICXX_CXX=icpc;' export 'MPICXX_CXX;' 'MPIF08_F08=ifort;' export 'MPIF08_F08;' 'MPIF90_F90=ifort;' export 'MPIF90_F90;' 'MPI_IB_CONGESTED=1;' export 'MPI_IB_CONGESTED;' 'MPI_ROOT=/glade/u/apps/ch/opt/mpt/2.19;' export 'MPI_ROOT;' 'MPI_SYSLOG_COPY=2;' export 'MPI_SYSLOG_COPY;' 'MPT_VERSION=2.19;' export 'MPT_VERSION;' 'MP_COMPILER=intel;' export 'MP_COMPILER;' 'NCAR_EXCLUDE_ASNEEDED=1;' export 'NCAR_EXCLUDE_ASNEEDED;' 'NCAR_HOST=cheyenne;' export 'NCAR_HOST;' 'NCAR_INC_NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include;' export 'NCAR_INC_NETCDF;' 'NCAR_LDFLAGS_NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/lib;' export 'NCAR_LDFLAGS_NETCDF;' 'NCAR_LIBS_MPT=-lrt\' '-ldl;' export 'NCAR_LIBS_MPT;' 'NCAR_LIBS_NETCDF=-Wl,-Bstatic\' '-lnetcdff\' '-lnetcdf\' '-lhdf5hl_fortran\' '-lhdf5_hl\' '-lhdf5_fortran\' '-lhdf5\' '-lsz\' '-lz\' '-Wl,-Bdynamic\' '-lm\' '-ldl;' export 'NCAR_LIBS_NETCDF;' 'NCAR_RANK_MPT=1000;' export 'NCAR_RANK_MPT;' 'NCAR_ROOT_INTEL=/glade/u/apps/opt/intel/2019u2;' export 'NCAR_ROOT_INTEL;' 'NCAR_ROOT_MPT=/glade/u/apps/ch/opt/mpt/2.19;' export 'NCAR_ROOT_MPT;' 'NCAR_ROOT_NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/;' export 'NCAR_ROOT_NETCDF;' 'NCAR_WRAPPER_MPI=/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi;' export 'NCAR_WRAPPER_MPI;' 'NCEPLIBS_DIR=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19;' export 'NCEPLIBS_DIR;' 'NEMSIO_INC=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include;' export 'NEMSIO_INC;' 'NEMSIO_LIB=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a;' export 'NEMSIO_LIB;' 'NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/;' export 'NETCDF;' '__LMOD_REF_COUNT_NLSPATH=/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/lib/intel64/locale/%l_%t/%N:1;' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH=/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/lib/intel64/locale/%l_%t/%N;' export 'NLSPATH;' 'OMP_NUM_THREADS=1;' export 'OMP_NUM_THREADS;' 'OMP_STACKSIZE=64000K;' export 'OMP_STACKSIZE;' 'OSHCC_CC=icc;' export 'OSHCC_CC;' 'OSHCXX_CXX=icpc;' export 'OSHCXX_CXX;' 'OSHF90_F90=ifort;' export 'OSHF90_F90;' '__LMOD_REF_COUNT_PATH=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/bin:1\;/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/bin:1\;/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2:1\;/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi:1\;/glade/u/apps/ch/opt/mpt/2.19/bin:1\;/glade/u/apps/opt/intel/2019u2/vtune_amplifier/bin64:1\;/glade/u/apps/opt/intel/2019u2/inspector/bin64:1\;/glade/u/apps/opt/intel/2019u2/advisor/bin64:1\;/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/bin/intel64:1\;/glade/u/apps/opt/globus-utils:1\;/glade/u/apps/ch/opt/usr/bin:1\;/ncar/opt/slurm/latest/bin:1\;/opt/clmgr/sbin:1\;/opt/clmgr/bin:1\;/opt/sgi/sbin:1\;/opt/sgi/bin:1\;/glade/u/apps/ch/opt/lmod/8.1.7/bin:1\;/glade/u/home/heinzell/bin:1\;/usr/local/bin:1\;/usr/bin:1\;/bin:2\;/usr/bin/X11:1\;/usr/games:1\;/opt/ibutils/bin:1\;/usr/lib/mit/bin:1\;/opt/pbs/bin:1\;/sbin:1\;/glade/u/apps/opt/hpss/hpss-client.5.0.2.p5/bin:1\;/glade/u/apps/ch/os/usr/bin:1;' export '__LMOD_REF_COUNT_PATH;' 'PATH=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/bin:/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/bin:/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2:/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi:/glade/u/apps/ch/opt/mpt/2.19/bin:/glade/u/apps/opt/intel/2019u2/vtune_amplifier/bin64:/glade/u/apps/opt/intel/2019u2/inspector/bin64:/glade/u/apps/opt/intel/2019u2/advisor/bin64:/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/bin/intel64:/glade/u/apps/opt/globus-utils:/glade/u/apps/ch/opt/usr/bin:/ncar/opt/slurm/latest/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/glade/u/apps/ch/opt/lmod/8.1.7/bin:/glade/u/home/heinzell/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games:/opt/ibutils/bin:/usr/lib/mit/bin:/opt/pbs/bin:/sbin:/glade/u/apps/opt/hpss/hpss-client.5.0.2.p5/bin:/glade/u/apps/ch/os/usr/bin;' export 'PATH;' 'PERL5LIB=/glade/u/apps/ch/os/usr/lib/perl5/5.18.2/;' export 'PERL5LIB;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/lib/pkgconfig:1;' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/lib/pkgconfig;' export 'PKG_CONFIG_PATH;' 'SIONLIB=/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19;' export 'SIONLIB;' 'SIONLIB_INC=-I/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/include\' '-I/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/include/mod_64;' export 'SIONLIB_INC;' 'SIONLIB_LIB=-L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib\' '-lsionmpi_f90_64\' '-lsionser_f90_64\' '-lsionmpi_64\' '-lsiongen_64\' '-lsionser_64\' '-lsioncom_64\' '-lsioncom_64_lock_none;' export 'SIONLIB_LIB;' 'SP_LIBd=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a;' export 'SP_LIBd;' 'VTUNE_AMPLIFIER_2019_DIR=/glade/u/apps/opt/intel/2019u2/vtune_amplifier;' export 'VTUNE_AMPLIFIER_2019_DIR;' 'W3EMC_LIBd=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a;' export 'W3EMC_LIBd;' 'W3NCO_LIBd=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a;' export 'W3NCO_LIBd;' 'WRFIO_NCD_LARGE_FILE_SUPPORT=1;' export 'WRFIO_NCD_LARGE_FILE_SUPPORT;' '__LMOD_REF_COUNT__LMFILES_=/glade/u/apps/ch/modulefiles/default/idep/ncarenv/1.3.lua:1\;/glade/u/apps/ch/modulefiles/default/compilers/intel/19.0.2.lua:1\;/glade/u/apps/ch/modulefiles/default/intel/19.0.2/mpt/2.19.lua:1\;/glade/u/apps/ch/modulefiles/default/intel/19.0.2/ncarcompilers/0.5.0.lua:1\;/glade/u/apps/ch/modulefiles/default/intel/19.0.2/netcdf/4.6.3.lua:1\;/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19/esmf/8.0.0:1\;/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19/NCEPlibs/9.9.9:1\;/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19/SIONlib/1.7.4:1\;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel/fv3:1;' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_=/glade/u/apps/ch/modulefiles/default/idep/ncarenv/1.3.lua:/glade/u/apps/ch/modulefiles/default/compilers/intel/19.0.2.lua:/glade/u/apps/ch/modulefiles/default/intel/19.0.2/mpt/2.19.lua:/glade/u/apps/ch/modulefiles/default/intel/19.0.2/ncarcompilers/0.5.0.lua:/glade/u/apps/ch/modulefiles/default/intel/19.0.2/netcdf/4.6.3.lua:/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19/esmf/8.0.0:/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19/NCEPlibs/9.9.9:/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19/SIONlib/1.7.4:/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel/fv3;' export '_LMFILES_;' '_ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJtcHQiLH0sbVQ9e05DRVBsaWJzPXtbImZuIl09Ii9nbGFkZS9wL3JhbC9qbnRwL0dNVEIvdG9vbHMvbW9kdWxlZmlsZXMvaW50ZWwtMTkuMC4yL21wdC0yLjE5L05DRVBsaWJzLzkuOS45IixbImZ1bGxOYW1lIl09Ik5DRVBsaWJzLzkuOS45IixbImxvYWRPcmRlciJdPTcscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iTkNFUGxpYnMvOS45LjkiLH0sU0lPTmxpYj17WyJmbiJdPSIvZ2xhZGUvcC9y;' export '_ModuleTable001_;' '_ModuleTable002_=YWwvam50cC9HTVRCL3Rvb2xzL21vZHVsZWZpbGVzL2ludGVsLTE5LjAuMi9tcHQtMi4xOS9TSU9ObGliLzEuNy40IixbImZ1bGxOYW1lIl09IlNJT05saWIvMS43LjQiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJTSU9ObGliLzEuNy40Iix9LGVzbWY9e1siZm4iXT0iL2dsYWRlL3AvcmFsL2pudHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9pbnRlbC0xOS4wLjIvbXB0LTIuMTkvZXNtZi84LjAuMCIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wIixbImxvYWRPcmRlciJdPTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNt;' export '_ModuleTable002_;' '_ModuleTable003_=Zi84LjAuMCIsfSxmdjM9e1siZm4iXT0iL2dsYWRlL3dvcmsvaGVpbnplbGwvZnYzL3Vmcy13ZWF0aGVyLW1vZGVsL3Vmcy13ZWF0aGVyLW1vZGVsX3B1YmxpYy1yZWxlYXNlX3VwZGF0ZS1mcm9tLWR0Yy1kZXZlbG9wLTIwMTkxMjA5L2ludGVsL21vZHVsZWZpbGVzL2NoZXllbm5lLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09OSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0saW50ZWw9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVycy9pbnRlbC8xOS4wLjIubHVhIixbImZ1bGxOYW1lIl09ImludGVsLzE5LjAuMiIsWyJs;' export '_ModuleTable003_;' '_ModuleTable004_=b2FkT3JkZXIiXT0yLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImludGVsLzE5LjAuMiIsfSxtcHQ9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2ludGVsLzE5LjAuMi9tcHQvMi4xOS5sdWEiLFsiZnVsbE5hbWUiXT0ibXB0LzIuMTkiLFsibG9hZE9yZGVyIl09Myxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJtcHQvMi4xOSIsfSxuY2FyY29tcGlsZXJzPXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pbnRlbC8xOS4wLjIvbmNhcmNvbXBpbGVycy8wLjUuMC5sdWEiLFsiZnVsbE5h;' export '_ModuleTable004_;' '_ModuleTable005_=bWUiXT0ibmNhcmNvbXBpbGVycy8wLjUuMCIsWyJsb2FkT3JkZXIiXT00LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5jYXJjb21waWxlcnMvMC41LjAiLH0sbmNhcmVudj17WyJmbiJdPSIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcC9uY2FyZW52LzEuMy5sdWEiLFsiZnVsbE5hbWUiXT0ibmNhcmVudi8xLjMiLFsibG9hZE9yZGVyIl09MSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuY2FyZW52LzEuMyIsfSxuZXRjZGY9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2ludGVsLzE5LjAu;' export '_ModuleTable005_;' '_ModuleTable006_=Mi9uZXRjZGYvNC42LjMubHVhIixbImZ1bGxOYW1lIl09Im5ldGNkZi80LjYuMyIsWyJsb2FkT3JkZXIiXT01LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZi80LjYuMyIsfSx9LG1wYXRoQT17Ii9nbGFkZS93b3JrL2hlaW56ZWxsL2Z2My91ZnMtd2VhdGhlci1tb2RlbC91ZnMtd2VhdGhlci1tb2RlbF9wdWJsaWMtcmVsZWFzZV91cGRhdGUtZnJvbS1kdGMtZGV2ZWxvcC0yMDE5MTIwOS9pbnRlbC9tb2R1bGVmaWxlcy9jaGV5ZW5uZS5pbnRlbCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRl;' export '_ModuleTable006_;' '_ModuleTable007_=cCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pbnRlbC8xOS4wLjIiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvbXB0LzIuMTkvaW50ZWwvMTkuMC4yIiwiL2dsYWRlL3AvcmFsL2pudHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9pbnRlbC0xOS4wLjIvbXB0LTIuMTkiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVyczovZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfQ==;' export '_ModuleTable007_;' '_ModuleTable_Sz_=7;' export '_ModuleTable_Sz_;' ncar_pylib '()' '{' . '/glade/u/apps/opt/ncar_pylib/ncar_pylib;' '};' +++ ADVISOR_2019_DIR=/glade/u/apps/opt/intel/2019u2/advisor +++ export ADVISOR_2019_DIR +++ BACIO_LIB4=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a +++ export BACIO_LIB4 +++ CC=icc +++ export CC +++ CESMDATAROOT=/glade/p/cesmdata/cseg +++ export CESMDATAROOT +++ CESMROOT=/glade/p/cesm +++ export CESMROOT +++ CMAKE_CXX_COMPILER=mpicxx +++ export CMAKE_CXX_COMPILER +++ CMAKE_C_COMPILER=mpicc +++ export CMAKE_C_COMPILER +++ CMAKE_Fortran_COMPILER=mpif90 +++ export CMAKE_Fortran_COMPILER +++ CMAKE_Platform=cheyenne.intel +++ export CMAKE_Platform +++ COMPILER=intel +++ export COMPILER +++ COMPILER_VERSION=19.0.2 +++ export COMPILER_VERSION +++ __LMOD_REF_COUNT_CPATH='/glade/u/apps/ch/opt/mpt_fmods/2.19/intel/19.0.2:1;/glade/u/apps/ch/opt/mpt/2.19/include:1' +++ export __LMOD_REF_COUNT_CPATH +++ CPATH=/glade/u/apps/ch/opt/mpt_fmods/2.19/intel/19.0.2:/glade/u/apps/ch/opt/mpt/2.19/include +++ export CPATH +++ CXX=icpc +++ export CXX +++ DASK_ROOT_CONFIG=/glade/u/apps/config/dask +++ export DASK_ROOT_CONFIG +++ ENV=/etc/profile.d/modules.sh +++ export ENV +++ ESMFMKFILE=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib/esmf.mk +++ export ESMFMKFILE +++ F77=ifort +++ export F77 +++ F90=ifort +++ export F90 +++ FC=ifort +++ export FC +++ __LMOD_REF_COUNT_FPATH=/glade/u/apps/ch/opt/mpt/2.19/include:1 +++ export __LMOD_REF_COUNT_FPATH +++ FPATH=/glade/u/apps/ch/opt/mpt/2.19/include +++ export FPATH +++ INSPECTOR_2019_DIR=/glade/u/apps/opt/intel/2019u2/inspector +++ export INSPECTOR_2019_DIR +++ INTEL_BASE_PATH=/glade/u/apps/opt/intel/2019u2 +++ export INTEL_BASE_PATH +++ INTEL_COMPILER_BASE_PATH=/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux +++ export INTEL_COMPILER_BASE_PATH +++ INTEL_LICENSE_FILE=28518@128.117.177.41 +++ export INTEL_LICENSE_FILE +++ INTEL_MAJOR_VERSION=19.0 +++ export INTEL_MAJOR_VERSION +++ INTEL_MINOR_VERSION=0.2 +++ export INTEL_MINOR_VERSION +++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/glade/u/apps/ch/opt/mpt_fmods/2.19/intel/19.0.2:1;/glade/u/apps/ch/opt/mpt/2.19/lib:1;/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/lib/intel64:1;/ncar/opt/slurm/latest/lib:1;/glade/u/apps/ch/os/usr/lib64:1;/glade/u/apps/ch/os/usr/lib:1;/glade/u/apps/ch/os/lib64:1;/glade/u/apps/ch/os/lib:1' +++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH +++ LD_LIBRARY_PATH=/glade/u/apps/ch/opt/mpt_fmods/2.19/intel/19.0.2:/glade/u/apps/ch/opt/mpt/2.19/lib:/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/lib/intel64:/ncar/opt/slurm/latest/lib:/glade/u/apps/ch/os/usr/lib64:/glade/u/apps/ch/os/usr/lib:/glade/u/apps/ch/os/lib64:/glade/u/apps/ch/os/lib +++ export LD_LIBRARY_PATH +++ __LMOD_REF_COUNT_LIBRARY_PATH=/glade/u/apps/ch/opt/mpt/2.19/lib:1 +++ export __LMOD_REF_COUNT_LIBRARY_PATH +++ LIBRARY_PATH=/glade/u/apps/ch/opt/mpt/2.19/lib +++ export LIBRARY_PATH +++ LMOD_COMPILER=intel +++ export LMOD_COMPILER +++ LMOD_COMPILER_VERSION=19.0.2 +++ export LMOD_COMPILER_VERSION +++ LMOD_FAMILY_COMPILER=intel +++ export LMOD_FAMILY_COMPILER +++ LMOD_FAMILY_COMPILER_VERSION=19.0.2 +++ export LMOD_FAMILY_COMPILER_VERSION +++ LMOD_FAMILY_MPI=mpt +++ export LMOD_FAMILY_MPI +++ LMOD_FAMILY_MPI_VERSION=2.19 +++ export LMOD_FAMILY_MPI_VERSION +++ LMOD_MPI=mpt_fmods +++ export LMOD_MPI +++ LMOD_MPI_VERSION=2.19 +++ export LMOD_MPI_VERSION +++ LM_LICENSE_FILE=28518@128.117.177.41 +++ export LM_LICENSE_FILE +++ __LMOD_REF_COUNT_LOADEDMODULES='ncarenv/1.3:1;intel/19.0.2:1;mpt/2.19:1;ncarcompilers/0.5.0:1;netcdf/4.6.3:1;esmf/8.0.0:1;NCEPlibs/9.9.9:1;SIONlib/1.7.4:1;fv3:1' +++ export __LMOD_REF_COUNT_LOADEDMODULES +++ LOADEDMODULES=ncarenv/1.3:intel/19.0.2:mpt/2.19:ncarcompilers/0.5.0:netcdf/4.6.3:esmf/8.0.0:NCEPlibs/9.9.9:SIONlib/1.7.4:fv3 +++ export LOADEDMODULES +++ __LMOD_REF_COUNT_MANPATH='/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/share/man:1;/glade/u/apps/ch/opt/mpt/2.19/man:1;/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/man/common:1;/ncar/opt/slurm/latest/share/man:1;/usr/local/man:1;/usr/share/man:1;/opt/pbs/share/man:1;/opt/clmgr/man:1;/opt/sgi/share/man:1' +++ export __LMOD_REF_COUNT_MANPATH +++ MANPATH=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/share/man:/glade/u/apps/ch/opt/mpt/2.19/man:/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/man/common:/ncar/opt/slurm/latest/share/man:/usr/local/man:/usr/share/man:/opt/pbs/share/man:/opt/clmgr/man:/opt/sgi/share/man +++ export MANPATH +++ __LMOD_REF_COUNT_MODULEPATH='/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel:1;/glade/u/apps/ch/modulefiles/default/compilers:1;/glade/u/apps/ch/modulefiles/default/idep:1;/glade/u/apps/ch/modulefiles/default/intel/19.0.2:1;/glade/u/apps/ch/modulefiles/default/mpt/2.19/intel/19.0.2:1;/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19:1' +++ export __LMOD_REF_COUNT_MODULEPATH +++ MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel:/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep:/glade/u/apps/ch/modulefiles/default/intel/19.0.2:/glade/u/apps/ch/modulefiles/default/mpt/2.19/intel/19.0.2:/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19 +++ export MODULEPATH +++ MPICC_CC=icc +++ export MPICC_CC +++ MPICXX_CXX=icpc +++ export MPICXX_CXX +++ MPIF08_F08=ifort +++ export MPIF08_F08 +++ MPIF90_F90=ifort +++ export MPIF90_F90 +++ MPI_IB_CONGESTED=1 +++ export MPI_IB_CONGESTED +++ MPI_ROOT=/glade/u/apps/ch/opt/mpt/2.19 +++ export MPI_ROOT +++ MPI_SYSLOG_COPY=2 +++ export MPI_SYSLOG_COPY +++ MPT_VERSION=2.19 +++ export MPT_VERSION +++ MP_COMPILER=intel +++ export MP_COMPILER +++ NCAR_EXCLUDE_ASNEEDED=1 +++ export NCAR_EXCLUDE_ASNEEDED +++ NCAR_HOST=cheyenne +++ export NCAR_HOST +++ NCAR_INC_NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include +++ export NCAR_INC_NETCDF +++ NCAR_LDFLAGS_NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/lib +++ export NCAR_LDFLAGS_NETCDF +++ NCAR_LIBS_MPT='-lrt -ldl' +++ export NCAR_LIBS_MPT +++ NCAR_LIBS_NETCDF='-Wl,-Bstatic -lnetcdff -lnetcdf -lhdf5hl_fortran -lhdf5_hl -lhdf5_fortran -lhdf5 -lsz -lz -Wl,-Bdynamic -lm -ldl' +++ export NCAR_LIBS_NETCDF +++ NCAR_RANK_MPT=1000 +++ export NCAR_RANK_MPT +++ NCAR_ROOT_INTEL=/glade/u/apps/opt/intel/2019u2 +++ export NCAR_ROOT_INTEL +++ NCAR_ROOT_MPT=/glade/u/apps/ch/opt/mpt/2.19 +++ export NCAR_ROOT_MPT +++ NCAR_ROOT_NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/ +++ export NCAR_ROOT_NETCDF +++ NCAR_WRAPPER_MPI=/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi +++ export NCAR_WRAPPER_MPI +++ NCEPLIBS_DIR=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19 +++ export NCEPLIBS_DIR +++ NEMSIO_INC=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include +++ export NEMSIO_INC +++ NEMSIO_LIB=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a +++ export NEMSIO_LIB +++ NETCDF=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/ +++ export NETCDF +++ __LMOD_REF_COUNT_NLSPATH=/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/lib/intel64/locale/%l_%t/%N:1 +++ export __LMOD_REF_COUNT_NLSPATH +++ NLSPATH=/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/lib/intel64/locale/%l_%t/%N +++ export NLSPATH +++ OMP_NUM_THREADS=1 +++ export OMP_NUM_THREADS +++ OMP_STACKSIZE=64000K +++ export OMP_STACKSIZE +++ OSHCC_CC=icc +++ export OSHCC_CC +++ OSHCXX_CXX=icpc +++ export OSHCXX_CXX +++ OSHF90_F90=ifort +++ export OSHF90_F90 +++ __LMOD_REF_COUNT_PATH='/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/bin:1;/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/bin:1;/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2:1;/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi:1;/glade/u/apps/ch/opt/mpt/2.19/bin:1;/glade/u/apps/opt/intel/2019u2/vtune_amplifier/bin64:1;/glade/u/apps/opt/intel/2019u2/inspector/bin64:1;/glade/u/apps/opt/intel/2019u2/advisor/bin64:1;/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/bin/intel64:1;/glade/u/apps/opt/globus-utils:1;/glade/u/apps/ch/opt/usr/bin:1;/ncar/opt/slurm/latest/bin:1;/opt/clmgr/sbin:1;/opt/clmgr/bin:1;/opt/sgi/sbin:1;/opt/sgi/bin:1;/glade/u/apps/ch/opt/lmod/8.1.7/bin:1;/glade/u/home/heinzell/bin:1;/usr/local/bin:1;/usr/bin:1;/bin:2;/usr/bin/X11:1;/usr/games:1;/opt/ibutils/bin:1;/usr/lib/mit/bin:1;/opt/pbs/bin:1;/sbin:1;/glade/u/apps/opt/hpss/hpss-client.5.0.2.p5/bin:1;/glade/u/apps/ch/os/usr/bin:1' +++ export __LMOD_REF_COUNT_PATH +++ PATH=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/bin:/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/bin:/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2:/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi:/glade/u/apps/ch/opt/mpt/2.19/bin:/glade/u/apps/opt/intel/2019u2/vtune_amplifier/bin64:/glade/u/apps/opt/intel/2019u2/inspector/bin64:/glade/u/apps/opt/intel/2019u2/advisor/bin64:/glade/u/apps/opt/intel/2019u2/compilers_and_libraries/linux/bin/intel64:/glade/u/apps/opt/globus-utils:/glade/u/apps/ch/opt/usr/bin:/ncar/opt/slurm/latest/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/glade/u/apps/ch/opt/lmod/8.1.7/bin:/glade/u/home/heinzell/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games:/opt/ibutils/bin:/usr/lib/mit/bin:/opt/pbs/bin:/sbin:/glade/u/apps/opt/hpss/hpss-client.5.0.2.p5/bin:/glade/u/apps/ch/os/usr/bin +++ export PATH +++ PERL5LIB=/glade/u/apps/ch/os/usr/lib/perl5/5.18.2/ +++ export PERL5LIB +++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/lib/pkgconfig:1 +++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH +++ PKG_CONFIG_PATH=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/lib/pkgconfig +++ export PKG_CONFIG_PATH +++ SIONLIB=/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19 +++ export SIONLIB +++ SIONLIB_INC='-I/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/include -I/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/include/mod_64' +++ export SIONLIB_INC +++ SIONLIB_LIB='-L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none' +++ export SIONLIB_LIB +++ SP_LIBd=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a +++ export SP_LIBd +++ VTUNE_AMPLIFIER_2019_DIR=/glade/u/apps/opt/intel/2019u2/vtune_amplifier +++ export VTUNE_AMPLIFIER_2019_DIR +++ W3EMC_LIBd=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a +++ export W3EMC_LIBd +++ W3NCO_LIBd=/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a +++ export W3NCO_LIBd +++ WRFIO_NCD_LARGE_FILE_SUPPORT=1 +++ export WRFIO_NCD_LARGE_FILE_SUPPORT +++ __LMOD_REF_COUNT__LMFILES_='/glade/u/apps/ch/modulefiles/default/idep/ncarenv/1.3.lua:1;/glade/u/apps/ch/modulefiles/default/compilers/intel/19.0.2.lua:1;/glade/u/apps/ch/modulefiles/default/intel/19.0.2/mpt/2.19.lua:1;/glade/u/apps/ch/modulefiles/default/intel/19.0.2/ncarcompilers/0.5.0.lua:1;/glade/u/apps/ch/modulefiles/default/intel/19.0.2/netcdf/4.6.3.lua:1;/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19/esmf/8.0.0:1;/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19/NCEPlibs/9.9.9:1;/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19/SIONlib/1.7.4:1;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel/fv3:1' +++ export __LMOD_REF_COUNT__LMFILES_ +++ _LMFILES_=/glade/u/apps/ch/modulefiles/default/idep/ncarenv/1.3.lua:/glade/u/apps/ch/modulefiles/default/compilers/intel/19.0.2.lua:/glade/u/apps/ch/modulefiles/default/intel/19.0.2/mpt/2.19.lua:/glade/u/apps/ch/modulefiles/default/intel/19.0.2/ncarcompilers/0.5.0.lua:/glade/u/apps/ch/modulefiles/default/intel/19.0.2/netcdf/4.6.3.lua:/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19/esmf/8.0.0:/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19/NCEPlibs/9.9.9:/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19/SIONlib/1.7.4:/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel/fv3 +++ export _LMFILES_ +++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJtcHQiLH0sbVQ9e05DRVBsaWJzPXtbImZuIl09Ii9nbGFkZS9wL3JhbC9qbnRwL0dNVEIvdG9vbHMvbW9kdWxlZmlsZXMvaW50ZWwtMTkuMC4yL21wdC0yLjE5L05DRVBsaWJzLzkuOS45IixbImZ1bGxOYW1lIl09Ik5DRVBsaWJzLzkuOS45IixbImxvYWRPcmRlciJdPTcscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iTkNFUGxpYnMvOS45LjkiLH0sU0lPTmxpYj17WyJmbiJdPSIvZ2xhZGUvcC9y +++ export _ModuleTable001_ +++ _ModuleTable002_=YWwvam50cC9HTVRCL3Rvb2xzL21vZHVsZWZpbGVzL2ludGVsLTE5LjAuMi9tcHQtMi4xOS9TSU9ObGliLzEuNy40IixbImZ1bGxOYW1lIl09IlNJT05saWIvMS43LjQiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJTSU9ObGliLzEuNy40Iix9LGVzbWY9e1siZm4iXT0iL2dsYWRlL3AvcmFsL2pudHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9pbnRlbC0xOS4wLjIvbXB0LTIuMTkvZXNtZi84LjAuMCIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wIixbImxvYWRPcmRlciJdPTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNt +++ export _ModuleTable002_ +++ _ModuleTable003_=Zi84LjAuMCIsfSxmdjM9e1siZm4iXT0iL2dsYWRlL3dvcmsvaGVpbnplbGwvZnYzL3Vmcy13ZWF0aGVyLW1vZGVsL3Vmcy13ZWF0aGVyLW1vZGVsX3B1YmxpYy1yZWxlYXNlX3VwZGF0ZS1mcm9tLWR0Yy1kZXZlbG9wLTIwMTkxMjA5L2ludGVsL21vZHVsZWZpbGVzL2NoZXllbm5lLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09OSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0saW50ZWw9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVycy9pbnRlbC8xOS4wLjIubHVhIixbImZ1bGxOYW1lIl09ImludGVsLzE5LjAuMiIsWyJs +++ export _ModuleTable003_ +++ _ModuleTable004_=b2FkT3JkZXIiXT0yLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImludGVsLzE5LjAuMiIsfSxtcHQ9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2ludGVsLzE5LjAuMi9tcHQvMi4xOS5sdWEiLFsiZnVsbE5hbWUiXT0ibXB0LzIuMTkiLFsibG9hZE9yZGVyIl09Myxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJtcHQvMi4xOSIsfSxuY2FyY29tcGlsZXJzPXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pbnRlbC8xOS4wLjIvbmNhcmNvbXBpbGVycy8wLjUuMC5sdWEiLFsiZnVsbE5h +++ export _ModuleTable004_ +++ _ModuleTable005_=bWUiXT0ibmNhcmNvbXBpbGVycy8wLjUuMCIsWyJsb2FkT3JkZXIiXT00LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5jYXJjb21waWxlcnMvMC41LjAiLH0sbmNhcmVudj17WyJmbiJdPSIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcC9uY2FyZW52LzEuMy5sdWEiLFsiZnVsbE5hbWUiXT0ibmNhcmVudi8xLjMiLFsibG9hZE9yZGVyIl09MSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuY2FyZW52LzEuMyIsfSxuZXRjZGY9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2ludGVsLzE5LjAu +++ export _ModuleTable005_ +++ _ModuleTable006_=Mi9uZXRjZGYvNC42LjMubHVhIixbImZ1bGxOYW1lIl09Im5ldGNkZi80LjYuMyIsWyJsb2FkT3JkZXIiXT01LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZi80LjYuMyIsfSx9LG1wYXRoQT17Ii9nbGFkZS93b3JrL2hlaW56ZWxsL2Z2My91ZnMtd2VhdGhlci1tb2RlbC91ZnMtd2VhdGhlci1tb2RlbF9wdWJsaWMtcmVsZWFzZV91cGRhdGUtZnJvbS1kdGMtZGV2ZWxvcC0yMDE5MTIwOS9pbnRlbC9tb2R1bGVmaWxlcy9jaGV5ZW5uZS5pbnRlbCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRl +++ export _ModuleTable006_ +++ _ModuleTable007_=cCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pbnRlbC8xOS4wLjIiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvbXB0LzIuMTkvaW50ZWwvMTkuMC4yIiwiL2dsYWRlL3AvcmFsL2pudHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9pbnRlbC0xOS4wLjIvbXB0LTIuMTkiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVyczovZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfQ== +++ export _ModuleTable007_ +++ _ModuleTable_Sz_=7 +++ export _ModuleTable_Sz_ +++ : -s sh ++ eval ++ module list +++ /glade/u/apps/ch/opt/lmod/8.1.7/lmod/lmod/libexec/lmod bash list + +Currently Loaded Modules: + 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 + 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 + 3) mpt/2.19 6) esmf/8.0.0 9) fv3 + + + ++ eval 'MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel:/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep:/glade/u/apps/ch/modulefiles/default/intel/19.0.2:/glade/u/apps/ch/modulefiles/default/mpt/2.19/intel/19.0.2:/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19;' export 'MODULEPATH;' '_ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJtcHQiLH0sbVQ9e05DRVBsaWJzPXtbImZuIl09Ii9nbGFkZS9wL3JhbC9qbnRwL0dNVEIvdG9vbHMvbW9kdWxlZmlsZXMvaW50ZWwtMTkuMC4yL21wdC0yLjE5L05DRVBsaWJzLzkuOS45IixbImZ1bGxOYW1lIl09Ik5DRVBsaWJzLzkuOS45IixbImxvYWRPcmRlciJdPTcscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iTkNFUGxpYnMvOS45LjkiLH0sU0lPTmxpYj17WyJmbiJdPSIvZ2xhZGUvcC9y;' export '_ModuleTable001_;' '_ModuleTable002_=YWwvam50cC9HTVRCL3Rvb2xzL21vZHVsZWZpbGVzL2ludGVsLTE5LjAuMi9tcHQtMi4xOS9TSU9ObGliLzEuNy40IixbImZ1bGxOYW1lIl09IlNJT05saWIvMS43LjQiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJTSU9ObGliLzEuNy40Iix9LGVzbWY9e1siZm4iXT0iL2dsYWRlL3AvcmFsL2pudHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9pbnRlbC0xOS4wLjIvbXB0LTIuMTkvZXNtZi84LjAuMCIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wIixbImxvYWRPcmRlciJdPTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNt;' export '_ModuleTable002_;' '_ModuleTable003_=Zi84LjAuMCIsfSxmdjM9e1siZm4iXT0iL2dsYWRlL3dvcmsvaGVpbnplbGwvZnYzL3Vmcy13ZWF0aGVyLW1vZGVsL3Vmcy13ZWF0aGVyLW1vZGVsX3B1YmxpYy1yZWxlYXNlX3VwZGF0ZS1mcm9tLWR0Yy1kZXZlbG9wLTIwMTkxMjA5L2ludGVsL21vZHVsZWZpbGVzL2NoZXllbm5lLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09OSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0saW50ZWw9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVycy9pbnRlbC8xOS4wLjIubHVhIixbImZ1bGxOYW1lIl09ImludGVsLzE5LjAuMiIsWyJs;' export '_ModuleTable003_;' '_ModuleTable004_=b2FkT3JkZXIiXT0yLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImludGVsLzE5LjAuMiIsfSxtcHQ9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2ludGVsLzE5LjAuMi9tcHQvMi4xOS5sdWEiLFsiZnVsbE5hbWUiXT0ibXB0LzIuMTkiLFsibG9hZE9yZGVyIl09Myxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJtcHQvMi4xOSIsfSxuY2FyY29tcGlsZXJzPXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pbnRlbC8xOS4wLjIvbmNhcmNvbXBpbGVycy8wLjUuMC5sdWEiLFsiZnVsbE5h;' export '_ModuleTable004_;' '_ModuleTable005_=bWUiXT0ibmNhcmNvbXBpbGVycy8wLjUuMCIsWyJsb2FkT3JkZXIiXT00LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5jYXJjb21waWxlcnMvMC41LjAiLH0sbmNhcmVudj17WyJmbiJdPSIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcC9uY2FyZW52LzEuMy5sdWEiLFsiZnVsbE5hbWUiXT0ibmNhcmVudi8xLjMiLFsibG9hZE9yZGVyIl09MSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuY2FyZW52LzEuMyIsfSxuZXRjZGY9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2ludGVsLzE5LjAu;' export '_ModuleTable005_;' '_ModuleTable006_=Mi9uZXRjZGYvNC42LjMubHVhIixbImZ1bGxOYW1lIl09Im5ldGNkZi80LjYuMyIsWyJsb2FkT3JkZXIiXT01LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZi80LjYuMyIsfSx9LG1wYXRoQT17Ii9nbGFkZS93b3JrL2hlaW56ZWxsL2Z2My91ZnMtd2VhdGhlci1tb2RlbC91ZnMtd2VhdGhlci1tb2RlbF9wdWJsaWMtcmVsZWFzZV91cGRhdGUtZnJvbS1kdGMtZGV2ZWxvcC0yMDE5MTIwOS9pbnRlbC9tb2R1bGVmaWxlcy9jaGV5ZW5uZS5pbnRlbCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRl;' export '_ModuleTable006_;' '_ModuleTable007_=cCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pbnRlbC8xOS4wLjIiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvbXB0LzIuMTkvaW50ZWwvMTkuMC4yIiwiL2dsYWRlL3AvcmFsL2pudHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9pbnRlbC0xOS4wLjIvbXB0LTIuMTkiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVyczovZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfQ==;' export '_ModuleTable007_;' '_ModuleTable_Sz_=7;' export '_ModuleTable_Sz_;' +++ MODULEPATH=/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel:/glade/u/apps/ch/modulefiles/default/compilers:/glade/u/apps/ch/modulefiles/default/idep:/glade/u/apps/ch/modulefiles/default/intel/19.0.2:/glade/u/apps/ch/modulefiles/default/mpt/2.19/intel/19.0.2:/glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.0.2/mpt-2.19 +++ export MODULEPATH +++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJtcHQiLH0sbVQ9e05DRVBsaWJzPXtbImZuIl09Ii9nbGFkZS9wL3JhbC9qbnRwL0dNVEIvdG9vbHMvbW9kdWxlZmlsZXMvaW50ZWwtMTkuMC4yL21wdC0yLjE5L05DRVBsaWJzLzkuOS45IixbImZ1bGxOYW1lIl09Ik5DRVBsaWJzLzkuOS45IixbImxvYWRPcmRlciJdPTcscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iTkNFUGxpYnMvOS45LjkiLH0sU0lPTmxpYj17WyJmbiJdPSIvZ2xhZGUvcC9y +++ export _ModuleTable001_ +++ _ModuleTable002_=YWwvam50cC9HTVRCL3Rvb2xzL21vZHVsZWZpbGVzL2ludGVsLTE5LjAuMi9tcHQtMi4xOS9TSU9ObGliLzEuNy40IixbImZ1bGxOYW1lIl09IlNJT05saWIvMS43LjQiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJTSU9ObGliLzEuNy40Iix9LGVzbWY9e1siZm4iXT0iL2dsYWRlL3AvcmFsL2pudHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9pbnRlbC0xOS4wLjIvbXB0LTIuMTkvZXNtZi84LjAuMCIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wIixbImxvYWRPcmRlciJdPTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNt +++ export _ModuleTable002_ +++ _ModuleTable003_=Zi84LjAuMCIsfSxmdjM9e1siZm4iXT0iL2dsYWRlL3dvcmsvaGVpbnplbGwvZnYzL3Vmcy13ZWF0aGVyLW1vZGVsL3Vmcy13ZWF0aGVyLW1vZGVsX3B1YmxpYy1yZWxlYXNlX3VwZGF0ZS1mcm9tLWR0Yy1kZXZlbG9wLTIwMTkxMjA5L2ludGVsL21vZHVsZWZpbGVzL2NoZXllbm5lLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09OSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0saW50ZWw9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVycy9pbnRlbC8xOS4wLjIubHVhIixbImZ1bGxOYW1lIl09ImludGVsLzE5LjAuMiIsWyJs +++ export _ModuleTable003_ +++ _ModuleTable004_=b2FkT3JkZXIiXT0yLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImludGVsLzE5LjAuMiIsfSxtcHQ9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2ludGVsLzE5LjAuMi9tcHQvMi4xOS5sdWEiLFsiZnVsbE5hbWUiXT0ibXB0LzIuMTkiLFsibG9hZE9yZGVyIl09Myxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJtcHQvMi4xOSIsfSxuY2FyY29tcGlsZXJzPXtbImZuIl09Ii9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pbnRlbC8xOS4wLjIvbmNhcmNvbXBpbGVycy8wLjUuMC5sdWEiLFsiZnVsbE5h +++ export _ModuleTable004_ +++ _ModuleTable005_=bWUiXT0ibmNhcmNvbXBpbGVycy8wLjUuMCIsWyJsb2FkT3JkZXIiXT00LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5jYXJjb21waWxlcnMvMC41LjAiLH0sbmNhcmVudj17WyJmbiJdPSIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcC9uY2FyZW52LzEuMy5sdWEiLFsiZnVsbE5hbWUiXT0ibmNhcmVudi8xLjMiLFsibG9hZE9yZGVyIl09MSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuY2FyZW52LzEuMyIsfSxuZXRjZGY9e1siZm4iXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2ludGVsLzE5LjAu +++ export _ModuleTable005_ +++ _ModuleTable006_=Mi9uZXRjZGYvNC42LjMubHVhIixbImZ1bGxOYW1lIl09Im5ldGNkZi80LjYuMyIsWyJsb2FkT3JkZXIiXT01LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZi80LjYuMyIsfSx9LG1wYXRoQT17Ii9nbGFkZS93b3JrL2hlaW56ZWxsL2Z2My91ZnMtd2VhdGhlci1tb2RlbC91ZnMtd2VhdGhlci1tb2RlbF9wdWJsaWMtcmVsZWFzZV91cGRhdGUtZnJvbS1kdGMtZGV2ZWxvcC0yMDE5MTIwOS9pbnRlbC9tb2R1bGVmaWxlcy9jaGV5ZW5uZS5pbnRlbCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9jb21waWxlcnMiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRl +++ export _ModuleTable006_ +++ _ModuleTable007_=cCIsIi9nbGFkZS91L2FwcHMvY2gvbW9kdWxlZmlsZXMvZGVmYXVsdC9pbnRlbC8xOS4wLjIiLCIvZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvbXB0LzIuMTkvaW50ZWwvMTkuMC4yIiwiL2dsYWRlL3AvcmFsL2pudHAvR01UQi90b29scy9tb2R1bGVmaWxlcy9pbnRlbC0xOS4wLjIvbXB0LTIuMTkiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2dsYWRlL3UvYXBwcy9jaC9tb2R1bGVmaWxlcy9kZWZhdWx0L2NvbXBpbGVyczovZ2xhZGUvdS9hcHBzL2NoL21vZHVsZWZpbGVzL2RlZmF1bHQvaWRlcCIsfQ== +++ export _ModuleTable007_ +++ _ModuleTable_Sz_=7 +++ export _ModuleTable_Sz_ +++ : -s sh ++ eval ++ cd build_fv3_2 ++ cmake /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel -DDEBUG=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -- The C compiler identification is Intel 19.0.0.20190117 -- The CXX compiler identification is Intel 19.0.0.20190117 +-- The Fortran compiler identification is Intel 19.0.0.20190117 -- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -- works -- Detecting C compiler ABI info @@ -7094,14 +4761,39 @@ Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMS -- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done --- The Fortran compiler identification is Intel 19.0.0.20190117 -- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -- works -- Detecting Fortran compiler ABI info -- Detecting Fortran compiler ABI info - done -- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 supports Fortran 90 -- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 supports Fortran 90 -- yes --- Dynamics compiled with 32-bit option, adjust fv_sat_adj types +-- Found MPI_C: /usr/lib64/libpthread.so;/glade/u/apps/ch/opt/mpt/2.19/lib/libmpi.so +-- Found MPI_CXX: /usr/lib64/libpthread.so;/glade/u/apps/ch/opt/mpt/2.19/lib/libmpi++.so;/glade/u/apps/ch/opt/mpt/2.19/lib/libmpi.so +-- Found MPI_Fortran: /usr/lib64/libpthread.so;/glade/u/apps/ch/opt/mpt/2.19/lib/libmpi.so +ESMFMKFILE: /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib/esmf.mk + Found ESMF: +ESMF_VERSION_MAJOR: 8 +ESMF_F90COMPILEPATHS: /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod;/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include;/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include +ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib +ESMF_F90ESMFLINKLIBS: -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf +-- Found ESMF: /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod;/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include;/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include (found version "8.0.0") + +Setting configuration for cheyenne.intel + +C compiler: Intel 19.0.0.20190117 (mpicc) +CXX compiler: Intel 19.0.0.20190117 (mpicxx) +Fortran compiler: Intel 19.0.0.20190117 (mpif90) + +DEBUG is ENABLED +REPRO is disabled +32BIT is disabled +OPENMP is ENABLED +AVX2 is ENABLED +INLINE_POST is disabled + + +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 @@ -7121,79600 +4813,588 @@ Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMS -- 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 SCHEMES from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90 +INFOGot CCPP_SCHEMES from environment variable: /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfpbltq.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mfscuq.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/satmedmfvdifq.F;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/FV3/ccpp/physics/physics/moninshoc.f +INFOGot CAPS from environment variable: /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2/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: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". +-- Build files have been written to: /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/tests/build_fv3_2 ++ make -j 3 Scanning dependencies of target ccpp -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields_idx.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_utils.c -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.c -[ 8%] Linking Fortran static library libccpp.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar qc libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/test_fields.dir/test_fields.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_fields.c -[ 9%] Linking C executable test_fields -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -O2 -fPIC -qopenmp -qopenmp CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -[ 10%] Linking Fortran executable test_check -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_check.dir/test_check.f90.o -o test_check ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 11%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -[ 12%] Linking Fortran executable test_init_finalize -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". +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_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 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 +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%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.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 +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/drifters/cloud_interpolator.F90.o +[ 3%] Built target fv3cpl +[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o Scanning dependencies of target ccppphys -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90.o.provides.build -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90.o.provides.build -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 32 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 99%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 99%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -[100%] Linking Fortran static library libccppphys.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/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_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/mfscu.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/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o -/usr/bin/ranlib libccppphys.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[2]: Nothing to be done for 'preinstall'. -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Bitforbit" --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccpp.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config-bitforbit.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_utils.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_errors.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_strings.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_suite.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_types.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_api.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccppphys.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config-bitforbit.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_stochastics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_stochastics_cap.mod -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_cplfields.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=Y # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_data.F90 -o CCPP_layer/CCPP_data.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=Y # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... - -Build CCPP layer ... - -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DOVERLOAD_R4 CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c FV3GFS_io.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_write_internal_state.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c post_gfs_stub.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fv3_config.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c time_utils.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c atmos_model.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fcst_grid_comp.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; \ -gmake nems REPRO=Y \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL CCPP_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 03:09:53 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 03:09:53 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 03:09:53 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 03:09:53 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 03:09:53 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 03:09:53 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 03:09:53 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 03:09:53 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 03:09:53 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 03:09:53 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=ifort -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libccppdriver.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libstochastic_physics.a -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -L/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_11.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_11.exe -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_11 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' NEMS_BUILDOPT=REPRO=Y clean -Will copy modules.nems and NEMS.x as fv3_11 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -+ elapsed=1027 -+ echo 'Elapsed time 1027 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 1027 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.intel -+ BUILD_TARGET=cheyenne.intel -+ readonly 'MAKE_OPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' -+ readonly BUILD_NAME=fv3_12 -+ BUILD_NAME=fv3_12 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -cheyenne6 -+ echo 'Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp into fv3_12.exe on cheyenne.intel' -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp into fv3_12.exe on cheyenne.intel -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake -+ [[ cheyenne.intel == cheyenne.* ]] -+ MAKE_THREADS=3 -+ MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\W\W\3\=\Y* ]] -+ [[ 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 == *\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* ]] -+ NEMS_BUILDOPT=REPRO=Y -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_12 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' NEMS_BUILDOPT=REPRO=Y distclean -Will copy modules.nems and NEMS.x as fv3_12 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include" ; \ -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp --clean -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: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_12 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' NEMS_BUILDOPT=REPRO=Y build -Will copy modules.nems and NEMS.x as fv3_12 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/modulefiles/cheyenne.intel/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_12" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_12 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/conf/configure.fv3.cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ -exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/threadloc.c -o ../mpp/threadloc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +[ 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 CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o +[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.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/module_mp_radar.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/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/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 CMakeFiles/fms.dir/FMS/mpp/mpp.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 +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/physparam.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/iccn_def.F.o +fpp: warning: keyword redefined: STATIC +[ 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 +[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o +[ 7%] 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. +[ 7%] 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. +[ 7%] 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/gfs_phy_tracer_config.F.o +fpp: warning: keyword redefined: STATIC +[ 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_BL_MYJPBL.F90.o +[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o +[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o +[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o +[ 10%] 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/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o +[ 12%] 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/h2ophys.f.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 FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o +[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o +[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o +[ 15%] 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 +[ 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 +[ 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 +[ 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/gfdl_fv_sat_adj.F90.o +[ 17%] 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/gfdl_cloud_microphys.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/wv_saturation.F.o +fpp: warning: keyword redefined: STATIC +[ 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 +[ 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/ccpp_FV3_GFS_v15p2_fast_physics_cap.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 +[ 24%] 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 +[ 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/GFS_time_vary_pre.fv3.F90.o +[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90.o +[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o +fpp: warning: keyword redefined: STATIC +[ 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/radlw_main.f.o +[ 29%] 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 +fpp: warning: keyword redefined: STATIC +[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o +fpp: warning: keyword redefined: STATIC +[ 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 +[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.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/dcyc2.f.o +[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o +[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o +[ 33%] 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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_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_lw_pre.F90.o +[ 34%] 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/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 +[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_stochastics_cap.F90.o +[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o +[ 36%] 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_setup.F90.o +[ 36%] 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_time_vary_cap.F90.o +[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_physics_cap.F90.o +[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_time_vary_cap.F90.o +[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_radiation_cap.F90.o +[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_radiation_cap.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_io.F90.o +[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_cap.F90.o +[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_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/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 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 FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o +[ 40%] 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 FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o +[ 41%] 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. +[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o +[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o +[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o +[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o +[ 43%] 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. +[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o +[ 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 +[ 44%] 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 +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_spherical.F90.o +[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.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 CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o +[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o +[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o +[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.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_thompson.F90.o +[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.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 CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o +[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o +[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o +[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o +[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o +[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o +[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o +[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o +[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o +fpp: warning: keyword redefined: STATIC +[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.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/field_manager/fm_util.F90.o +[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o +[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o +[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o +[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o +[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.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/physics/sfc_ocean.F.o +fpp: warning: keyword redefined: STATIC Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +[ 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 +[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o +[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o +fpp: warning: keyword redefined: STATIC +[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o +[ 50%] 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. +[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o +[ 50%] 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. +fpp: warning: keyword redefined: STATIC +[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o +[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.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/diag_manager/diag_table.F90.o +[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o +[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o +[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o +[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o +[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o +[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o +[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o +[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.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 FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o +[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o +[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o +[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o +[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o +[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o +fpp: warning: keyword redefined: STATIC +[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o +[ 59%] Linking Fortran static library libccppphys.a +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 +[ 59%] Built target ccppphys +Scanning dependencies of target gfsphysics +[ 60%] 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 +fpp: warning: keyword redefined: STATIC +[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o +[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o +[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o +[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o +[ 60%] 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 +[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o +[ 61%] 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 +[ 62%] 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 +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o +[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o +[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o +[ 62%] 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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh cheyenne.intel "$PATH_CCPP" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk \ - "REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"" NO NO ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/include ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -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 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 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 slc of variable volume_fraction_of_unfrozen_soil_moisture 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 phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top 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 sec of variable seconds_elapsed_since_model_initialization 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 kbot of variable vertical_index_at_cloud_base 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 stc of variable soil_temperature 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 xlaixy of variable leaf_area_index 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 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 phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back 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 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 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 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 v10m of variable y_wind_at_10m 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 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 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 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 nmtvr of variable number_of_statistical_measures_of_subgrid_orography 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 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 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 ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial 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 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 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 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 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 levs of variable vertical_dimension 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 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 w_0 of variable coefficient_w_0 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 pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter 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 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 phy_myj_chkqlm of variable surface_layer_evaporation_switch 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 sdec of variable sine_of_solar_declination_angle 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 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 dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep 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 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 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 lgocart of variable flag_gocart 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 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 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 sinlat of variable sine_of_latitude 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 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 do_sfcperts of variable flag_for_stochastic_surface_perturbations 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 tsfc_ice of variable surface_skin_temperature_over_ice_interstitial 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 debug of variable flag_debug 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 u1 of variable x_wind_at_lowest_model_layer_for_diag 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 do_myjsfc of variable do_myjsfc 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 gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics 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 slopetype of variable surface_slope_classification 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 levh2o of variable vertical_dimension_of_h2o_forcing_data 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 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 save_q of variable tracer_concentration_save 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 cf_upi of variable convective_cloud_fraction_for_microphysics 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial 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 dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL 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 tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave 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 forcet of variable temperature_tendency_due_to_dynamics 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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 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 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 ntchmdiag of variable number_of_chemical_tracers_for_diagnostics 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 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 dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column 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 islmsk_cice of variable sea_land_ice_mask_cice 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 pgr of variable surface_air_pressure 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 nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling 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 nscav of variable number_of_tracers_scavenged 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 zorl_ice of variable surface_roughness_length_over_ice_interstitial 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 aero_in of variable flag_for_aerosol_input_MG 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 avg_max_length of variable time_interval_for_maximum_hourly_fields 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 kind_LOGICAL of variable kind_LOGICAL 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial 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 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 mdt of variable time_step_for_remapping_for_fast_physics 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 sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model 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 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 runoff of variable total_runoff 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 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 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 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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial 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 nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation 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 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 qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio 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 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 oceanfrac of variable sea_area_fraction 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 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 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 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 ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land 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 phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back 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 con_t0c of variable temperature_at_zero_celsius 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 dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling 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 shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term 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 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 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 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 mom4ice of variable flag_for_mom4_coupling 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 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 tsfcl of variable surface_skin_temperature_over_land 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ozphys -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 ozphys_2015 -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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme noahmpdrv -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 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 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_noahmp_pre -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 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 mp_thompson_post -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 gwdps_post -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 lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme mynnrad_post -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 lsm_noah -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme dcyc2t3_post -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -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 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_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_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_water_to_rain -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 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 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_aerosol_input_MG -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_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_shoc_after_convection -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 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 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 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 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_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_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 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 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 162 schemes to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.mk, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 12 auto-generated caps to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.mk and /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ ./build_ccpp.sh cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk 'REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp' NO NO -MACHINE_ID=cheyenne.intel is valid. -Compilers set for cheyenne.intel. -Obtained ESMF_LIB=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib from /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -DNETCDF_DIR=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/ -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DOPENMP=ON -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 19.0.0.20190117 --- The CXX compiler identification is Intel 19.0.0.20190117 --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- The Fortran compiler identification is Intel 19.0.0.20190117 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 supports Fortran 90 --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 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 LibXml2: /usr/lib64/libxml2.so (found version "2.9.4") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.6") --- 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 SCHEMES from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90 --- Configuring done --- Generating done --- Build files have been written to: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields_idx.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_utils.c -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.c -[ 8%] Linking Fortran static library libccpp.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar qc libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/test_fields.dir/test_fields.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_fields.c -[ 9%] Linking C executable test_fields -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -O2 -fPIC -qopenmp -qopenmp CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -[ 10%] Linking Fortran executable test_check -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_check.dir/test_check.f90.o -o test_check ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 11%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -[ 12%] Linking Fortran executable test_init_finalize -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_noahmp_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_noahmp_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_noahmp_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_noahmp_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_noahmp_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_noahmp_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_noahmp_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_noahmp_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_noahmp_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_noahmp_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o.provides.build -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_noahmp_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_noahmp_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/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_ocean.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 99%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -[100%] Linking Fortran static library libccppphys.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/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_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/mfscu.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/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o -/usr/bin/ranlib libccppphys.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[2]: Nothing to be done for 'preinstall'. -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Bitforbit" --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccpp.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config-bitforbit.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_utils.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_errors.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_strings.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_suite.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_types.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_api.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccppphys.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config-bitforbit.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_noahmp_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_noahmp_fast_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_noahmp_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_noahmp_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_noahmp_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_noahmp_stochastics_cap.mod -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_cplfields.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=N # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_data.F90 -o CCPP_layer/CCPP_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=N # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... - -Build CCPP layer ... - -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c FV3GFS_io.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_write_internal_state.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c post_gfs_stub.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fv3_config.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c time_utils.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c atmos_model.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fcst_grid_comp.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; \ -gmake nems REPRO=Y \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL CCPP_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 03:54:55 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 03:54:55 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 03:54:55 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 03:54:55 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 03:54:55 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 03:54:55 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 03:54:55 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 03:54:55 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 03:54:55 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 03:54:55 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=ifort -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libccppdriver.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libstochastic_physics.a -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -L/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_12.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_12.exe -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_12 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' NEMS_BUILDOPT=REPRO=Y clean -Will copy modules.nems and NEMS.x as fv3_12 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -+ elapsed=1033 -+ echo 'Elapsed time 1033 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp finished' -Elapsed time 1033 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.intel -+ BUILD_TARGET=cheyenne.intel -+ readonly 'MAKE_OPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf' -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf' -+ readonly BUILD_NAME=fv3_13 -+ BUILD_NAME=fv3_13 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -cheyenne6 -+ 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 cheyenne.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 cheyenne.intel -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake -+ [[ cheyenne.intel == cheyenne.* ]] -+ MAKE_THREADS=3 -+ MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\W\W\3\=\Y* ]] -+ [[ 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 == *\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* ]] -+ NEMS_BUILDOPT=REPRO=Y -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_13 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf' NEMS_BUILDOPT=REPRO=Y distclean -Will copy modules.nems and NEMS.x as fv3_13 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include" ; \ -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf --clean -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: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_13 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf' NEMS_BUILDOPT=REPRO=Y build -Will copy modules.nems and NEMS.x as fv3_13 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/modulefiles/cheyenne.intel/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_13" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_13 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/conf/configure.fv3.cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ -exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/threadloc.c -o ../mpp/threadloc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_axis.F90 -o ../diag_manager/diag_axis.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_output.F90 -o ../diag_manager/diag_output.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh cheyenne.intel "$PATH_CCPP" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk \ - "REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"" NO NO ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/include ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf -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 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 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 slc of variable volume_fraction_of_unfrozen_soil_moisture 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 phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top 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 sec of variable seconds_elapsed_since_model_initialization 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 kbot of variable vertical_index_at_cloud_base 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 stc of variable soil_temperature 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 xlaixy of variable leaf_area_index 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 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 phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back 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 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 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 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 v10m of variable y_wind_at_10m 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 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 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 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 nmtvr of variable number_of_statistical_measures_of_subgrid_orography 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 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 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 ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial 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 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 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 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 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 levs of variable vertical_dimension 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 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 w_0 of variable coefficient_w_0 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 pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter 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 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 phy_myj_chkqlm of variable surface_layer_evaporation_switch 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 sdec of variable sine_of_solar_declination_angle 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 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 dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep 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 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 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 lgocart of variable flag_gocart 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 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 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 sinlat of variable sine_of_latitude 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 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 do_sfcperts of variable flag_for_stochastic_surface_perturbations 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 tsfc_ice of variable surface_skin_temperature_over_ice_interstitial 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 debug of variable flag_debug 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 u1 of variable x_wind_at_lowest_model_layer_for_diag 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 do_myjsfc of variable do_myjsfc 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 gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics 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 slopetype of variable surface_slope_classification 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 levh2o of variable vertical_dimension_of_h2o_forcing_data 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 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 save_q of variable tracer_concentration_save 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 cf_upi of variable convective_cloud_fraction_for_microphysics 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial 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 dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL 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 tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave 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 forcet of variable temperature_tendency_due_to_dynamics 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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 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 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 ntchmdiag of variable number_of_chemical_tracers_for_diagnostics 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 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 dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column 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 islmsk_cice of variable sea_land_ice_mask_cice 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 pgr of variable surface_air_pressure 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 nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling 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 nscav of variable number_of_tracers_scavenged 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 zorl_ice of variable surface_roughness_length_over_ice_interstitial 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 aero_in of variable flag_for_aerosol_input_MG 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 avg_max_length of variable time_interval_for_maximum_hourly_fields 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 kind_LOGICAL of variable kind_LOGICAL 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial 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 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 mdt of variable time_step_for_remapping_for_fast_physics 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 sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model 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 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 runoff of variable total_runoff 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 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 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 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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial 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 nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation 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 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 qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio 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 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 oceanfrac of variable sea_area_fraction 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 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 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 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 ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land 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 phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back 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 con_t0c of variable temperature_at_zero_celsius 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 dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling 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 shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term 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 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 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 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 mom4ice of variable flag_for_mom4_coupling 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 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 tsfcl of variable surface_skin_temperature_over_land 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ozphys -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 ozphys_2015 -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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme noahmpdrv -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 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 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_noahmp_pre -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 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 mp_thompson_post -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 gwdps_post -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 lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme mynnrad_post -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 lsm_noah -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme dcyc2t3_post -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -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 cloud_area_fraction -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 conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep -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 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 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 explicit_rainfall_rate_from_previous_timestep -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_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_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -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 graupel_precipitation_rate_from_previous_timestep -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_precipitation_rate_from_previous_timestep -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 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 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 namelist_filename_for_internal_file_reads -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_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_precipitation_rate_from_previous_timestep -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_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 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 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 162 schemes to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.mk, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 15 auto-generated caps to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.mk and /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ ./build_ccpp.sh cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk 'REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp' NO NO -MACHINE_ID=cheyenne.intel is valid. -Compilers set for cheyenne.intel. -Obtained ESMF_LIB=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib from /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -DNETCDF_DIR=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/ -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DOPENMP=ON -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 19.0.0.20190117 --- The CXX compiler identification is Intel 19.0.0.20190117 --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- The Fortran compiler identification is Intel 19.0.0.20190117 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 supports Fortran 90 --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 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 LibXml2: /usr/lib64/libxml2.so (found version "2.9.4") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.6") --- 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 SCHEMES from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90 --- Configuring done --- Generating done --- Build files have been written to: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 6%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields_idx.c -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_utils.c -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.c -[ 7%] Linking Fortran static library libccpp.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar qc libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 7%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/test_fields.dir/test_fields.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_fields.c -[ 8%] Linking C executable test_fields -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -O2 -fPIC -qopenmp -qopenmp CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -[ 9%] Linking Fortran executable test_check -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_check.dir/test_check.f90.o -o test_check ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -[ 10%] Linking Fortran executable test_init_finalize -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmgshoc_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmgshoc_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmgshoc_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmgshoc_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmgshoc_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmgshoc_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmgshoc_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmgshoc_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmg_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmg_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmg_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmg_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmg_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmg_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmg_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmg_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_satmedmf_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_satmedmf_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_satmedmf_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_satmedmf_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_satmedmf_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_satmedmf_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_satmedmf_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_satmedmf_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmg_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmg_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_cap.F90.o.provides.build -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmgshoc_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmgshoc_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_satmedmf_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_satmedmf_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_cap.F90.o.provides.build -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -[100%] Linking Fortran static library libccppphys.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/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_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/mfscu.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/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o -/usr/bin/ranlib libccppphys.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[2]: Nothing to be done for 'preinstall'. -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Bitforbit" --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccpp.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config-bitforbit.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_utils.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_errors.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_strings.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_suite.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_types.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_api.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccppphys.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config-bitforbit.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmgshoc_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmgshoc_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmgshoc_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmgshoc_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmgshoc_stochastics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmg_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmg_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmg_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmg_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmg_stochastics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_satmedmf_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_satmedmf_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_satmedmf_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_satmedmf_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_satmedmf_stochastics_cap.mod -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_cplfields.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=N # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_data.F90 -o CCPP_layer/CCPP_data.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=N # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... - -Build CCPP layer ... - -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c FV3GFS_io.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_write_internal_state.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c post_gfs_stub.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fv3_config.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c time_utils.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c atmos_model.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fcst_grid_comp.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; \ -gmake nems REPRO=Y \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL CCPP_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 04:20:04 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 04:20:04 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 04:20:04 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 04:20:04 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 04:20:04 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 04:20:04 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 04:20:04 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 04:20:04 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 04:20:04 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 04:20:04 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=ifort -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libccppdriver.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libstochastic_physics.a -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -L/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_13.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_13.exe -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_13 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf' NEMS_BUILDOPT=REPRO=Y clean -Will copy modules.nems and NEMS.x as fv3_13 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -+ elapsed=1076 -+ echo 'Elapsed time 1076 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf finished' -Elapsed time 1076 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.intel -+ BUILD_TARGET=cheyenne.intel -+ readonly 'MAKE_OPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y' -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y' -+ readonly BUILD_NAME=fv3_14 -+ BUILD_NAME=fv3_14 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -cheyenne6 -+ echo 'Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y into fv3_14.exe on cheyenne.intel' -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y into fv3_14.exe on cheyenne.intel -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake -+ [[ cheyenne.intel == cheyenne.* ]] -+ MAKE_THREADS=3 -+ MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\W\W\3\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,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_GFS_v15,FV3_GFS_v15plus,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_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ NEMS_BUILDOPT=REPRO=Y -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_14 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y' NEMS_BUILDOPT=REPRO=Y distclean -Will copy modules.nems and NEMS.x as fv3_14 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include" ; \ -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 --clean -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: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_14 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y' NEMS_BUILDOPT=REPRO=Y build -Will copy modules.nems and NEMS.x as fv3_14 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/modulefiles/cheyenne.intel/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_14" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_14 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/conf/configure.fv3.cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ -exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/threadloc.c -o ../mpp/threadloc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh cheyenne.intel "$PATH_CCPP" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk \ - "REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"" NO NO ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/include ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 -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_v15.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_v15plus.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 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 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 slc of variable volume_fraction_of_unfrozen_soil_moisture 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 phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top 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 sec of variable seconds_elapsed_since_model_initialization 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 kbot of variable vertical_index_at_cloud_base 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 stc of variable soil_temperature 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 xlaixy of variable leaf_area_index 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 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 phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back 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 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 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 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 v10m of variable y_wind_at_10m 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 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 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 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 nmtvr of variable number_of_statistical_measures_of_subgrid_orography 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 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 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 ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial 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 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 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 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 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 levs of variable vertical_dimension 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 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 w_0 of variable coefficient_w_0 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 pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter 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 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 phy_myj_chkqlm of variable surface_layer_evaporation_switch 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 sdec of variable sine_of_solar_declination_angle 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 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 dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep 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 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 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 lgocart of variable flag_gocart 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 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 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 sinlat of variable sine_of_latitude 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 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 do_sfcperts of variable flag_for_stochastic_surface_perturbations 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 tsfc_ice of variable surface_skin_temperature_over_ice_interstitial 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 debug of variable flag_debug 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 u1 of variable x_wind_at_lowest_model_layer_for_diag 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 do_myjsfc of variable do_myjsfc 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 gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics 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 slopetype of variable surface_slope_classification 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 levh2o of variable vertical_dimension_of_h2o_forcing_data 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 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 save_q of variable tracer_concentration_save 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 cf_upi of variable convective_cloud_fraction_for_microphysics 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial 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 dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL 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 tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave 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 forcet of variable temperature_tendency_due_to_dynamics 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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 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 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 ntchmdiag of variable number_of_chemical_tracers_for_diagnostics 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 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 dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column 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 islmsk_cice of variable sea_land_ice_mask_cice 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 pgr of variable surface_air_pressure 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 nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling 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 nscav of variable number_of_tracers_scavenged 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 zorl_ice of variable surface_roughness_length_over_ice_interstitial 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 aero_in of variable flag_for_aerosol_input_MG 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 avg_max_length of variable time_interval_for_maximum_hourly_fields 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 kind_LOGICAL of variable kind_LOGICAL 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial 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 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 mdt of variable time_step_for_remapping_for_fast_physics 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 sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model 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 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 runoff of variable total_runoff 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 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 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 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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial 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 nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation 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 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 qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio 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 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 oceanfrac of variable sea_area_fraction 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 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 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 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 ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land 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 phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back 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 con_t0c of variable temperature_at_zero_celsius 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 dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling 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 shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term 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 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 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 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 mom4ice of variable flag_for_mom4_coupling 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 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 tsfcl of variable surface_skin_temperature_over_land 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ozphys -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 ozphys_2015 -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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme noahmpdrv -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 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 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_noahmp_pre -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 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 mp_thompson_post -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 gwdps_post -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 lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme mynnrad_post -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 lsm_noah -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme dcyc2t3_post -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -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 cloud_area_fraction -INFO: filtering out variable cloud_condensed_water_conversion_threshold -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_water_to_rain -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep -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 do_myjsfc -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable explicit_rainfall_rate_from_previous_timestep -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_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_shoc_after_convection -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 graupel_precipitation_rate_from_previous_timestep -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_precipitation_rate_from_previous_timestep -INFO: filtering out variable ice_supersaturation_threshold -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_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable liquid_water_density -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable number_of_snow_layers -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_precipitation_rate_from_previous_timestep -INFO: filtering out variable snow_temperature -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -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 turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 162 schemes to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.mk, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 29 auto-generated caps to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.mk and /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ ./build_ccpp.sh cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk 'REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp' NO NO -MACHINE_ID=cheyenne.intel is valid. -Compilers set for cheyenne.intel. -Obtained ESMF_LIB=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib from /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -DNETCDF_DIR=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/ -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DOPENMP=ON -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 19.0.0.20190117 --- The CXX compiler identification is Intel 19.0.0.20190117 --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- The Fortran compiler identification is Intel 19.0.0.20190117 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 supports Fortran 90 --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 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 LibXml2: /usr/lib64/libxml2.so (found version "2.9.4") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.6") --- 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 SCHEMES from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15_fast_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15_stochastics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_stochastics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_CPT_v0_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_CPT_v0_fast_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_CPT_v0_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_CPT_v0_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_CPT_v0_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_CPT_v0_stochastics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GSD_v0_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GSD_v0_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GSD_v0_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GSD_v0_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GSD_v0_stochastics_cap.F90 --- Configuring done --- Generating done --- Build files have been written to: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.c -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields_idx.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_utils.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.c -[ 7%] Linking Fortran static library libccpp.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar qc libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 7%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/test_fields.dir/test_fields.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_fields.c -[ 8%] Linking C executable test_fields -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -O2 -fPIC -qopenmp -qopenmp CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -[ 9%] Linking Fortran executable test_check -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_check.dir/test_check.f90.o -o test_check ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -[ 10%] Linking Fortran executable test_init_finalize -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 32 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_CPT_v0_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_cpt_v0_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_cpt_v0_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_CPT_v0_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_cpt_v0_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_cpt_v0_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_CPT_v0_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_cpt_v0_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_cpt_v0_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_CPT_v0_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_cpt_v0_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_cpt_v0_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_CPT_v0_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_cpt_v0_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_cpt_v0_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GSD_v0_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gsd_v0_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gsd_v0_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GSD_v0_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gsd_v0_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gsd_v0_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GSD_v0_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gsd_v0_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gsd_v0_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GSD_v0_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gsd_v0_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gsd_v0_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_CPT_v0_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_cpt_v0_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_cpt_v0_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_cap.F90.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_cap.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_cap.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GSD_v0_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gsd_v0_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gsd_v0_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_cap.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -[100%] Linking Fortran static library libccppphys.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/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_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/mfscu.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/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o -/usr/bin/ranlib libccppphys.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[2]: Nothing to be done for 'preinstall'. -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Bitforbit" --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccpp.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config-bitforbit.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_utils.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_errors.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_strings.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_suite.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_types.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_api.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccppphys.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config-bitforbit.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15_fast_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15_stochastics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_fast_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_stochastics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_cpt_v0_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_cpt_v0_fast_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_cpt_v0_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_cpt_v0_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_cpt_v0_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_cpt_v0_stochastics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gsd_v0_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gsd_v0_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gsd_v0_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gsd_v0_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gsd_v0_stochastics_cap.mod -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_cplfields.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=Y # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_data.F90 -o CCPP_layer/CCPP_data.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=Y # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... - -Build CCPP layer ... - -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DOVERLOAD_R4 CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c FV3GFS_io.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_write_internal_state.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c post_gfs_stub.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fv3_config.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c time_utils.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c atmos_model.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fcst_grid_comp.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; \ -gmake nems REPRO=Y \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL CCPP_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 04:45:05 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 04:45:05 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 04:45:05 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 04:45:05 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 04:45:05 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 04:45:05 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 04:45:05 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 04:45:05 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 04:45:05 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 04:45:05 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=ifort -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libccppdriver.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libstochastic_physics.a -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -L/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_14.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_14.exe -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_14 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y' NEMS_BUILDOPT=REPRO=Y clean -Will copy modules.nems and NEMS.x as fv3_14 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -+ elapsed=1149 -+ echo 'Elapsed time 1149 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y finished' -Elapsed time 1149 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.intel -+ BUILD_TARGET=cheyenne.intel -+ readonly 'MAKE_OPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017' -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017' -+ readonly BUILD_NAME=fv3_15 -+ BUILD_NAME=fv3_15 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -cheyenne6 -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 into fv3_15.exe on cheyenne.intel' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 into fv3_15.exe on cheyenne.intel -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake -+ [[ cheyenne.intel == cheyenne.* ]] -+ MAKE_THREADS=3 -+ MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\W\W\3\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\D\E\B\U\G\=\Y* ]] -+ [[ 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* ]] -+ NEMS_BUILDOPT= -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_15 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017' NEMS_BUILDOPT= distclean -Will copy modules.nems and NEMS.x as fv3_15 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017 --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include" ; \ -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --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 formet -INFO: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_15 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017' NEMS_BUILDOPT= build -Will copy modules.nems and NEMS.x as fv3_15 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/modulefiles/cheyenne.intel/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_15" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_15 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/conf/configure.fv3.cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ -exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/threadloc.c -o ../mpp/threadloc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp_external.F90 -o ../time_interp/time_interp_external.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017 ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh cheyenne.intel "$PATH_CCPP" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk \ - "CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"" NO NO ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/include ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --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 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 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 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 slc of variable volume_fraction_of_unfrozen_soil_moisture 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 phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top 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 sec of variable seconds_elapsed_since_model_initialization 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 kbot of variable vertical_index_at_cloud_base 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 stc of variable soil_temperature 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 xlaixy of variable leaf_area_index 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 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 phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back 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 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 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 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 v10m of variable y_wind_at_10m 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 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 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 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 nmtvr of variable number_of_statistical_measures_of_subgrid_orography 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 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 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 ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial 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 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 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 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 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 levs of variable vertical_dimension 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 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 w_0 of variable coefficient_w_0 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 pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter 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 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 phy_myj_chkqlm of variable surface_layer_evaporation_switch 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 sdec of variable sine_of_solar_declination_angle 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 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 dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep 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 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 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 lgocart of variable flag_gocart 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 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 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 sinlat of variable sine_of_latitude 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 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 do_sfcperts of variable flag_for_stochastic_surface_perturbations 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 tsfc_ice of variable surface_skin_temperature_over_ice_interstitial 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 debug of variable flag_debug 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 u1 of variable x_wind_at_lowest_model_layer_for_diag 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 do_myjsfc of variable do_myjsfc 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 gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics 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 slopetype of variable surface_slope_classification 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 levh2o of variable vertical_dimension_of_h2o_forcing_data 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 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 save_q of variable tracer_concentration_save 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 cf_upi of variable convective_cloud_fraction_for_microphysics 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial 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 dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL 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 tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave 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 forcet of variable temperature_tendency_due_to_dynamics 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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 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 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 ntchmdiag of variable number_of_chemical_tracers_for_diagnostics 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 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 dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column 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 islmsk_cice of variable sea_land_ice_mask_cice 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 pgr of variable surface_air_pressure 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 nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling 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 nscav of variable number_of_tracers_scavenged 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 zorl_ice of variable surface_roughness_length_over_ice_interstitial 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 aero_in of variable flag_for_aerosol_input_MG 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 avg_max_length of variable time_interval_for_maximum_hourly_fields 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 kind_LOGICAL of variable kind_LOGICAL 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial 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 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 mdt of variable time_step_for_remapping_for_fast_physics 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 sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model 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 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 runoff of variable total_runoff 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 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 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 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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial 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 nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation 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 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 qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio 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 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 oceanfrac of variable sea_area_fraction 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 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 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 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 ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land 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 phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back 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 con_t0c of variable temperature_at_zero_celsius 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 dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling 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 shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term 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 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 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 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 mom4ice of variable flag_for_mom4_coupling 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 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 tsfcl of variable surface_skin_temperature_over_land 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ozphys -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 ozphys_2015 -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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme noahmpdrv -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 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 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_noahmp_pre -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 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 mp_thompson_post -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 gwdps_post -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 lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme mynnrad_post -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 lsm_noah -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme dcyc2t3_post -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -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 cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -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 conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep -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 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 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 explicit_rainfall_rate_from_previous_timestep -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_aerosol_input_MG -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_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_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_shoc_after_convection -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 graupel_precipitation_rate_from_previous_timestep -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_precipitation_rate_from_previous_timestep -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 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 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 namelist_filename_for_internal_file_reads -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_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_precipitation_rate_from_previous_timestep -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_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 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_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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 162 schemes to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.mk, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 5 auto-generated caps to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.mk and /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ ./build_ccpp.sh cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk 'CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp' NO NO -MACHINE_ID=cheyenne.intel is valid. -Compilers set for cheyenne.intel. -Obtained ESMF_LIB=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib from /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -DNETCDF_DIR=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/ -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DOPENMP=ON -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 19.0.0.20190117 --- The CXX compiler identification is Intel 19.0.0.20190117 --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- The Fortran compiler identification is Intel 19.0.0.20190117 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 supports Fortran 90 --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 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 LibXml2: /usr/lib64/libxml2.so (found version "2.9.4") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.6") --- 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 SCHEMES from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields_idx.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_utils.c -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.c -[ 8%] Linking Fortran static library libccpp.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar qc libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/test_fields.dir/test_fields.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_fields.c -[ 9%] Linking C executable test_fields -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -[ 10%] Linking Fortran executable test_check -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_check.dir/test_check.f90.o -o test_check ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 11%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -[ 12%] Linking Fortran executable test_init_finalize -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX-I -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o.provides.build -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 99%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -[100%] Linking Fortran static library libccppphys.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/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_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/mfscu.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/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[2]: Nothing to be done for 'preinstall'. -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Release" --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccpp.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config-release.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_utils.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_errors.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_strings.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_suite.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_types.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_api.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccppphys.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config-release.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_stochastics_cap.mod -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_cplfields.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=N # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_data.F90 -o CCPP_layer/CCPP_data.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=N # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... - -Build CCPP layer ... - -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c FV3GFS_io.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_write_internal_state.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c post_gfs_stub.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fv3_config.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c time_utils.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c atmos_model.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fcst_grid_comp.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; \ -gmake nems \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL CCPP_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 05:20:24 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 05:20:24 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 05:20:24 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 05:20:24 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 05:20:24 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 05:20:24 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 05:20:24 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 05:20:24 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 05:20:24 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 05:20:24 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=ifort -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libccppdriver.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libstochastic_physics.a -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -L/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_15.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_15.exe -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_15 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017' NEMS_BUILDOPT= clean -Will copy modules.nems and NEMS.x as fv3_15 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -+ elapsed=1067 -+ echo 'Elapsed time 1067 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 finished' -Elapsed time 1067 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 finished -+ SECONDS=0 -+ [[ 3 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ readonly APP=CCPP -+ APP=CCPP -+ readonly BUILD_NAME=fv3_16 -+ BUILD_NAME=fv3_16 -+ hostname -cheyenne6 -+ echo 'Compiling app CCPP into fv3_16.exe' -Compiling app CCPP into fv3_16.exe -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/.. -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS/exe/NEMS.x -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS/src/conf/modules.nems -+ set +e -+ ./NEMS/NEMSAppBuilder app=CCPP -ls: cannot access '../conf/component_*.mk': No such file or directory -NEMSAppBuilder: make app=CCPP distclean -Convert /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/CCPP.appBuilder -...into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/CCPP.appBuilder.mk -Include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/CCPP.appBuilder.mk -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec make CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017 --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include" ; \ -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --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 formet -INFO: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec make \ - -k cleanall FMS_DIR=/dev/null -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; make "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test_results.mk -NEMSAppBuilder: make app=CCPP build -Convert /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/CCPP.appBuilder -...into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/CCPP.appBuilder.mk -Include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/CCPP.appBuilder.mk -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/conf/configure.fv3.cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/modulefiles/cheyenne.intel/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk: No such file or directory -make -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" TEST -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ -exec make CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/threadloc.c -o ../mpp/threadloc.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL"/. -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017 ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh cheyenne.intel "$PATH_CCPP" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk \ - "CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"" NO NO ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/include ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --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 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 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 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 slc of variable volume_fraction_of_unfrozen_soil_moisture 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 phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top 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 sec of variable seconds_elapsed_since_model_initialization 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 kbot of variable vertical_index_at_cloud_base 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 stc of variable soil_temperature 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 xlaixy of variable leaf_area_index 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 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 phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back 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 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 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 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 v10m of variable y_wind_at_10m 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 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 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 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 nmtvr of variable number_of_statistical_measures_of_subgrid_orography 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 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 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 ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial 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 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 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 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 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 levs of variable vertical_dimension 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 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 w_0 of variable coefficient_w_0 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 pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter 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 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 phy_myj_chkqlm of variable surface_layer_evaporation_switch 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 sdec of variable sine_of_solar_declination_angle 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 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 dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep 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 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 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 lgocart of variable flag_gocart 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 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 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 sinlat of variable sine_of_latitude 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 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 do_sfcperts of variable flag_for_stochastic_surface_perturbations 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 tsfc_ice of variable surface_skin_temperature_over_ice_interstitial 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 debug of variable flag_debug 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 u1 of variable x_wind_at_lowest_model_layer_for_diag 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 do_myjsfc of variable do_myjsfc 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 gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics 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 slopetype of variable surface_slope_classification 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 levh2o of variable vertical_dimension_of_h2o_forcing_data 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 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 save_q of variable tracer_concentration_save 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 cf_upi of variable convective_cloud_fraction_for_microphysics 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial 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 dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL 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 tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave 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 forcet of variable temperature_tendency_due_to_dynamics 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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 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 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 ntchmdiag of variable number_of_chemical_tracers_for_diagnostics 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 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 dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column 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 islmsk_cice of variable sea_land_ice_mask_cice 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 pgr of variable surface_air_pressure 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 nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling 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 nscav of variable number_of_tracers_scavenged 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 zorl_ice of variable surface_roughness_length_over_ice_interstitial 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 aero_in of variable flag_for_aerosol_input_MG 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 avg_max_length of variable time_interval_for_maximum_hourly_fields 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 kind_LOGICAL of variable kind_LOGICAL 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial 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 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 mdt of variable time_step_for_remapping_for_fast_physics 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 sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model 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 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 runoff of variable total_runoff 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 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 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 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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial 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 nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation 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 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 qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio 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 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 oceanfrac of variable sea_area_fraction 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 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 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 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 ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land 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 phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back 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 con_t0c of variable temperature_at_zero_celsius 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 dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling 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 shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term 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 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 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 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 mom4ice of variable flag_for_mom4_coupling 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 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 tsfcl of variable surface_skin_temperature_over_land 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ozphys -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 ozphys_2015 -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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme noahmpdrv -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 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 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_noahmp_pre -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 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 mp_thompson_post -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 gwdps_post -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 lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme mynnrad_post -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 lsm_noah -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme dcyc2t3_post -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -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 cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -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 conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep -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 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 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 explicit_rainfall_rate_from_previous_timestep -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_aerosol_input_MG -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_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_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_shoc_after_convection -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 graupel_precipitation_rate_from_previous_timestep -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_precipitation_rate_from_previous_timestep -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 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 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 namelist_filename_for_internal_file_reads -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_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_precipitation_rate_from_previous_timestep -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_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 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_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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 162 schemes to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.mk, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 5 auto-generated caps to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.mk and /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ ./build_ccpp.sh cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk 'CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp' NO NO -MACHINE_ID=cheyenne.intel is valid. -Compilers set for cheyenne.intel. -Obtained ESMF_LIB=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib from /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -DNETCDF_DIR=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/ -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DOPENMP=ON -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 19.0.0.20190117 --- The CXX compiler identification is Intel 19.0.0.20190117 --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- The Fortran compiler identification is Intel 19.0.0.20190117 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 supports Fortran 90 --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 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 LibXml2: /usr/lib64/libxml2.so (found version "2.9.4") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.6") --- 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 SCHEMES from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields_idx.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_utils.c -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.c -[ 8%] Linking Fortran static library libccpp.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar qc libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/test_fields.dir/test_fields.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_fields.c -[ 9%] Linking C executable test_fields -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -[ 10%] Linking Fortran executable test_check -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_check.dir/test_check.f90.o -o test_check ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 11%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -[ 12%] Linking Fortran executable test_init_finalize -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX-I -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o.provides.build -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 99%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -[100%] Linking Fortran static library libccppphys.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/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_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/mfscu.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/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[2]: Nothing to be done for 'preinstall'. -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Release" --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccpp.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config-release.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_utils.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_errors.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_strings.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_suite.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_types.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_api.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccppphys.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config-release.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_stochastics_cap.mod -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; \ - exec make COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Building dependencies ... -make -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_cplfields.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=N # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_data.F90 -o CCPP_layer/CCPP_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make -C ccpp/driver FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=N # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... - -Build CCPP layer ... - -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c FV3GFS_io.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_write_internal_state.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c post_gfs_stub.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fv3_config.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c atmos_model.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fcst_grid_comp.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c time_utils.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -make esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL" complete! - -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; \ -make nems \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL CCPP_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && make stub -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 06:15:53 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 06:15:53 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 06:15:53 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 06:15:53 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 06:15:53 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 06:15:53 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 06:15:53 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 06:15:53 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 06:15:53 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 06:15:53 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=ifort -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libccppdriver.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libstochastic_physics.a -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -L/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x is created. -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -+ RC=0 -+ set -e -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/.. -+ [[ 0 -ne 0 ]] -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../tests/fv3_16.exe -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../tests/modules.fv3_16 -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS/src -+ gmake clean -Components in linker order: -rm -f -f *.tmp.f90 *.lst *.o *.mod lm map -cd ENS_Cpl ; gmake clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ gmake cleanall -Cleaning ... - -(cd gfsphysics && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -+ rm -rf FV3_INSTALL -+ rm -rf nems_dir -+ elapsed=1285 -+ echo 'Elapsed time 1285 seconds. Compiling app CCPP finished' -Elapsed time 1285 seconds. Compiling app CCPP finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.intel -+ BUILD_TARGET=cheyenne.intel -+ readonly 'MAKE_OPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' -+ readonly BUILD_NAME=fv3_17 -+ BUILD_NAME=fv3_17 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -cheyenne6 -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y into fv3_17.exe on cheyenne.intel' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y into fv3_17.exe on cheyenne.intel -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake -+ [[ cheyenne.intel == cheyenne.* ]] -+ MAKE_THREADS=3 -+ MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\W\W\3\=\Y* ]] -+ [[ 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 == *\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* ]] -+ NEMS_BUILDOPT= -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_17 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' NEMS_BUILDOPT= distclean -Will copy modules.nems and NEMS.x as fv3_17 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include" ; \ -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched --clean -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: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_17 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' NEMS_BUILDOPT= build -Will copy modules.nems and NEMS.x as fv3_17 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/modulefiles/cheyenne.intel/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_17" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_17 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/conf/configure.fv3.cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ -exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/threadloc.c -o ../mpp/threadloc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_axis.F90 -o ../diag_manager/diag_axis.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp_external.F90 -o ../time_interp/time_interp_external.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh cheyenne.intel "$PATH_CCPP" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk \ - "CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"" NO NO ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/include ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched -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 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 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 slc of variable volume_fraction_of_unfrozen_soil_moisture 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 phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top 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 sec of variable seconds_elapsed_since_model_initialization 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 kbot of variable vertical_index_at_cloud_base 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 stc of variable soil_temperature 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 xlaixy of variable leaf_area_index 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 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 phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back 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 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 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 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 v10m of variable y_wind_at_10m 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 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 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 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 nmtvr of variable number_of_statistical_measures_of_subgrid_orography 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 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 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 ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial 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 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 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 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 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 levs of variable vertical_dimension 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 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 w_0 of variable coefficient_w_0 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 pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter 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 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 phy_myj_chkqlm of variable surface_layer_evaporation_switch 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 sdec of variable sine_of_solar_declination_angle 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 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 dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep 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 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 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 lgocart of variable flag_gocart 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 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 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 sinlat of variable sine_of_latitude 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 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 do_sfcperts of variable flag_for_stochastic_surface_perturbations 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 tsfc_ice of variable surface_skin_temperature_over_ice_interstitial 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 debug of variable flag_debug 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 u1 of variable x_wind_at_lowest_model_layer_for_diag 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 do_myjsfc of variable do_myjsfc 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 gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics 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 slopetype of variable surface_slope_classification 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 levh2o of variable vertical_dimension_of_h2o_forcing_data 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 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 save_q of variable tracer_concentration_save 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 cf_upi of variable convective_cloud_fraction_for_microphysics 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial 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 dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL 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 tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave 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 forcet of variable temperature_tendency_due_to_dynamics 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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 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 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 ntchmdiag of variable number_of_chemical_tracers_for_diagnostics 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 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 dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column 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 islmsk_cice of variable sea_land_ice_mask_cice 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 pgr of variable surface_air_pressure 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 nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling 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 nscav of variable number_of_tracers_scavenged 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 zorl_ice of variable surface_roughness_length_over_ice_interstitial 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 aero_in of variable flag_for_aerosol_input_MG 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 avg_max_length of variable time_interval_for_maximum_hourly_fields 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 kind_LOGICAL of variable kind_LOGICAL 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial 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 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 mdt of variable time_step_for_remapping_for_fast_physics 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 sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model 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 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 runoff of variable total_runoff 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 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 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 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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial 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 nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation 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 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 qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio 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 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 oceanfrac of variable sea_area_fraction 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 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 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 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 ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land 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 phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back 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 con_t0c of variable temperature_at_zero_celsius 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 dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling 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 shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term 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 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 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 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 mom4ice of variable flag_for_mom4_coupling 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 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 tsfcl of variable surface_skin_temperature_over_land 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ozphys -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 ozphys_2015 -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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme noahmpdrv -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 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 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_noahmp_pre -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 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 mp_thompson_post -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 gwdps_post -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 lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme mynnrad_post -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 lsm_noah -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme dcyc2t3_post -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -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 cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -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 conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep -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 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 explicit_rainfall_rate_from_previous_timestep -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_aerosol_input_MG -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_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_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_shoc_after_convection -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 graupel_precipitation_rate_from_previous_timestep -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_precipitation_rate_from_previous_timestep -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 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 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 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_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_precipitation_rate_from_previous_timestep -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_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 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 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 162 schemes to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.mk, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 11 auto-generated caps to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.mk and /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ ./build_ccpp.sh cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk 'CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp' NO NO -MACHINE_ID=cheyenne.intel is valid. -Compilers set for cheyenne.intel. -Obtained ESMF_LIB=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib from /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -DNETCDF_DIR=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/ -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DOPENMP=ON -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 19.0.0.20190117 --- The CXX compiler identification is Intel 19.0.0.20190117 --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- The Fortran compiler identification is Intel 19.0.0.20190117 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 supports Fortran 90 --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 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 LibXml2: /usr/lib64/libxml2.so (found version "2.9.4") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.6") --- 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 SCHEMES from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_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: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields_idx.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_utils.c -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.c -[ 8%] Linking Fortran static library libccpp.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar qc libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/test_fields.dir/test_fields.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_fields.c -[ 9%] Linking C executable test_fields -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -[ 10%] Linking Fortran executable test_check -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_check.dir/test_check.f90.o -o test_check ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 11%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -[ 12%] Linking Fortran executable test_init_finalize -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX-I -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 32 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o.provides.build -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 99%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 99%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -[100%] Linking Fortran static library libccppphys.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/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_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/mfscu.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/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.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 CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o -/usr/bin/ranlib libccppphys.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[2]: Nothing to be done for 'preinstall'. -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Release" --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccpp.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config-release.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_utils.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_errors.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_strings.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_suite.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_types.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_api.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccppphys.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config-release.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_stochastics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_fast_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_stochastics_cap.mod -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_cplfields.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=Y # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_data.F90 -o CCPP_layer/CCPP_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=Y # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... - -Build CCPP layer ... - -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DOVERLOAD_R4 CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c FV3GFS_io.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_write_internal_state.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c post_gfs_stub.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fv3_config.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c time_utils.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c atmos_model.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fcst_grid_comp.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; \ -gmake nems \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL CCPP_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 06:36:49 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 06:36:49 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 06:36:49 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 06:36:49 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 06:36:49 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 06:36:49 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 06:36:49 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 06:36:49 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 06:36:49 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 06:36:49 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=ifort -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libccppdriver.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libstochastic_physics.a -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -L/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_17.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_17.exe -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_17 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' NEMS_BUILDOPT= clean -Will copy modules.nems and NEMS.x as fv3_17 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -+ elapsed=1114 -+ echo 'Elapsed time 1114 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y finished' -Elapsed time 1114 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.intel -+ BUILD_TARGET=cheyenne.intel -+ readonly 'MAKE_OPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' -+ readonly BUILD_NAME=fv3_18 -+ BUILD_NAME=fv3_18 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -cheyenne6 -+ 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 cheyenne.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 cheyenne.intel -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake -+ [[ cheyenne.intel == cheyenne.* ]] -+ MAKE_THREADS=3 -+ MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\W\W\3\=\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* ]] -+ [[ 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* ]] -+ NEMS_BUILDOPT= -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_18 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' NEMS_BUILDOPT= distclean -Will copy modules.nems and NEMS.x as fv3_18 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include" ; \ -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 --clean -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: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_18 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' NEMS_BUILDOPT= build -Will copy modules.nems and NEMS.x as fv3_18 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/modulefiles/cheyenne.intel/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_18" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_18 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/conf/configure.fv3.cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ -exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/threadloc.c -o ../mpp/threadloc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh cheyenne.intel "$PATH_CCPP" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk \ - "CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"" NO NO ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/include ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 -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 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 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 slc of variable volume_fraction_of_unfrozen_soil_moisture 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 phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top 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 sec of variable seconds_elapsed_since_model_initialization 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 kbot of variable vertical_index_at_cloud_base 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 stc of variable soil_temperature 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 xlaixy of variable leaf_area_index 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 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 phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back 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 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 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 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 v10m of variable y_wind_at_10m 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 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 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 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 nmtvr of variable number_of_statistical_measures_of_subgrid_orography 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 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 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 ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial 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 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 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 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 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 levs of variable vertical_dimension 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 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 w_0 of variable coefficient_w_0 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 pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter 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 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 phy_myj_chkqlm of variable surface_layer_evaporation_switch 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 sdec of variable sine_of_solar_declination_angle 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 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 dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep 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 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 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 lgocart of variable flag_gocart 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 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 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 sinlat of variable sine_of_latitude 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 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 do_sfcperts of variable flag_for_stochastic_surface_perturbations 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 tsfc_ice of variable surface_skin_temperature_over_ice_interstitial 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 debug of variable flag_debug 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 u1 of variable x_wind_at_lowest_model_layer_for_diag 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 do_myjsfc of variable do_myjsfc 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 gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics 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 slopetype of variable surface_slope_classification 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 levh2o of variable vertical_dimension_of_h2o_forcing_data 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 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 save_q of variable tracer_concentration_save 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 cf_upi of variable convective_cloud_fraction_for_microphysics 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial 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 dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL 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 tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave 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 forcet of variable temperature_tendency_due_to_dynamics 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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 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 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 ntchmdiag of variable number_of_chemical_tracers_for_diagnostics 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 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 dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column 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 islmsk_cice of variable sea_land_ice_mask_cice 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 pgr of variable surface_air_pressure 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 nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling 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 nscav of variable number_of_tracers_scavenged 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 zorl_ice of variable surface_roughness_length_over_ice_interstitial 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 aero_in of variable flag_for_aerosol_input_MG 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 avg_max_length of variable time_interval_for_maximum_hourly_fields 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 kind_LOGICAL of variable kind_LOGICAL 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial 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 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 mdt of variable time_step_for_remapping_for_fast_physics 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 sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model 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 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 runoff of variable total_runoff 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 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 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 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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial 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 nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation 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 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 qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio 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 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 oceanfrac of variable sea_area_fraction 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 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 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 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 ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land 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 phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back 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 con_t0c of variable temperature_at_zero_celsius 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 dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling 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 shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term 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 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 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 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 mom4ice of variable flag_for_mom4_coupling 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 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 tsfcl of variable surface_skin_temperature_over_land 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ozphys -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 ozphys_2015 -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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme noahmpdrv -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 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 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_noahmp_pre -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 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 mp_thompson_post -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 gwdps_post -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 lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme mynnrad_post -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 lsm_noah -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme dcyc2t3_post -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -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 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_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_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_water_to_rain -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep -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 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 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 explicit_rainfall_rate_from_previous_timestep -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_aerosol_input_MG -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_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_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_shoc_after_convection -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 graupel_precipitation_rate_from_previous_timestep -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_precipitation_rate_from_previous_timestep -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 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 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 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 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_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_precipitation_rate_from_previous_timestep -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_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 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_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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 162 schemes to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.mk, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 10 auto-generated caps to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.mk and /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ ./build_ccpp.sh cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk 'CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp' NO NO -MACHINE_ID=cheyenne.intel is valid. -Compilers set for cheyenne.intel. -Obtained ESMF_LIB=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib from /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -DNETCDF_DIR=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/ -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DOPENMP=ON -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 19.0.0.20190117 --- The CXX compiler identification is Intel 19.0.0.20190117 --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- The Fortran compiler identification is Intel 19.0.0.20190117 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 supports Fortran 90 --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 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 LibXml2: /usr/lib64/libxml2.so (found version "2.9.4") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.6") --- 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 SCHEMES from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_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: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields_idx.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_utils.c -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.c -[ 8%] Linking Fortran static library libccpp.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar qc libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/test_fields.dir/test_fields.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_fields.c -[ 9%] Linking C executable test_fields -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -[ 10%] Linking Fortran executable test_check -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_check.dir/test_check.f90.o -o test_check ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 11%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -[ 12%] Linking Fortran executable test_init_finalize -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX-I -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90.o.provides.build -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90.o.provides.build -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 32 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 99%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 99%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -[100%] Linking Fortran static library libccppphys.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/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_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/mfscu.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/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o -/usr/bin/ranlib libccppphys.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[2]: Nothing to be done for 'preinstall'. -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Release" --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccpp.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config-release.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_utils.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_errors.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_strings.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_suite.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_types.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_api.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccppphys.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config-release.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_stochastics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_stochastics_cap.mod -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_cplfields.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=Y # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_data.F90 -o CCPP_layer/CCPP_data.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=Y # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... - -Build CCPP layer ... - -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DOVERLOAD_R4 CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c FV3GFS_io.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_write_internal_state.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c post_gfs_stub.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fv3_config.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c time_utils.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c atmos_model.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fcst_grid_comp.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; \ -gmake nems \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL CCPP_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 07:10:27 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 07:10:27 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 07:10:27 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 07:10:27 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 07:10:27 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 07:10:27 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 07:10:27 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 07:10:27 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 07:10:27 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 07:10:27 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=ifort -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libccppdriver.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libstochastic_physics.a -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -L/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_18.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_18.exe -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_18 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' NEMS_BUILDOPT= clean -Will copy modules.nems and NEMS.x as fv3_18 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -+ elapsed=1118 -+ echo 'Elapsed time 1118 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y finished' -Elapsed time 1118 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.intel -+ BUILD_TARGET=cheyenne.intel -+ readonly 'MAKE_OPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y' -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y' -+ readonly BUILD_NAME=fv3_19 -+ BUILD_NAME=fv3_19 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -cheyenne6 -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y into fv3_19.exe on cheyenne.intel' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y into fv3_19.exe on cheyenne.intel -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake -+ [[ cheyenne.intel == cheyenne.* ]] -+ MAKE_THREADS=3 -+ MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\W\W\3\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\R\E\P\R\O\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\D\E\B\U\G\=\Y* ]] -+ NEMS_BUILDOPT=DEBUG=Y -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_19 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y' NEMS_BUILDOPT=DEBUG=Y distclean -Will copy modules.nems and NEMS.x as fv3_19 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --debug --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include" ; \ -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --debug --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched --clean -INFO: Logging level set to DEBUG -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Performing clean .... -DEBUG: Executing "rm -vf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.cmake /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.cmake /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_*_cap.F90 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_static_api.F90" -DEBUG: Execution of "rm -vf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.cmake /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.cmake /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_*_cap.F90 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_static_api.F90" returned with exit code 0 - stdout: "removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.mk' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.cmake' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.sh' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.mk' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.cmake' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.sh' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90' -removed '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_static_api.F90'" - stderr: "" -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_19 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y' NEMS_BUILDOPT=DEBUG=Y build -Will copy modules.nems and NEMS.x as fv3_19 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/modulefiles/cheyenne.intel/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_19" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_19 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/conf/configure.fv3.cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ -exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/threadloc.c -o ../mpp/threadloc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_axis.F90 -o ../diag_manager/diag_axis.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_output.F90 -o ../diag_manager/diag_output.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --debug --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh cheyenne.intel "$PATH_CCPP" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk \ - "CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"" NO NO ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/include ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --debug --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched -INFO: Logging level set to DEBUG -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 ... -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 -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 -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': [1160, 1399], 'GFS_control_type': [458, 959], 'GFS_interstitial_type': [1409, 1722], 'GFS_tbd_type': [1012, 1098], 'GFS_sfcprop_type': [192, 336], 'GFS_coupling_type': [344, 449], 'GFS_statein_type': [144, 168], 'GFS_cldprop_type': [1106, 1114], 'GFS_data_type': [1734, 1744], 'GFS_radtend_type': [1122, 1152], 'GFS_grid_type': [967, 1004], 'GFS_stateout_type': [176, 184], 'GFS_init_type': [93, 136]})]) -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, 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 -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, 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_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, 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, number_of_hydrometeors, 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_zhao_carr_pdf_microphysics_scheme, flag_for_morrison_gettelman_microphysics_scheme, coefficient_from_cloud_ice_to_snow, coefficient_from_cloud_water_to_rain, coefficient_for_evaporation_of_rainfall, cloud_condensed_water_conversion_threshold, 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, 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, vegetation_type_dataset_choice, soil_type_dataset_choice, 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_mom4_coupling, flag_for_ras_deep_convection, 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_mass_flux_deep_convection_scheme, number_of_statistical_measures_of_subgrid_orography, 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, 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, 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_gaussian_spatial_filter, flag_for_combination_of_sppt_with_isppt_deep, 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_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, flag_gocart -DEBUG: Variables in derived type GFS_interstitial_type: 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, surface_x_momentum_flux_for_coupling_interstitial, surface_y_momentum_flux_for_coupling_interstitial, surface_upward_sensible_heat_flux_for_coupling_interstitial, surface_upward_latent_heat_flux_for_coupling_interstitial, 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_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, 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, 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, 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_upwelling_longwave_flux_for_coupling_interstitial, 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 -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, 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, 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, temperature_tendency_due_to_dynamics, moisture_tendency_due_to_dynamics, temperature_from_previous_timestep, moisture_from_previous_timestep, conv_activity_counter, 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, 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, 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 -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, tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep, tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep, tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep, tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep, fraction_of_cellular_automata_for_deep_convection, convective_available_potential_energy_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_timestep, tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep, surface_diffused_shortwave_albedo, cosine_of_zenith_angle, surface_midlayer_air_temperature_in_longwave_radiation, surface_longwave_emissivity, tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep, tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep, 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, 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 ccpp_types.F90 with registry OrderedDict([('ccpp_types', {'ccpp_t': [131, 144], 'ccpp_subcycle_t': [85, 89], 'ccpp_suite_t': [108, 116], 'ccpp_field_t': [44, 52], 'ccpp_function_t': [58, 62], 'ccpp_group_t': [96, 100], 'ccpp_scheme_t': [68, 77]})]) -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 -DEBUG: Variables in derived type ccpp_subcycle_t: -DEBUG: Variables in derived type ccpp_suite_t: -DEBUG: Variables in derived type ccpp_field_t: -DEBUG: Variables in derived type ccpp_function_t: -DEBUG: Variables in derived type ccpp_group_t: -DEBUG: Variables in derived type ccpp_scheme_t: -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 -DEBUG: Updating local name of variable lw_fluxes_sfc from sfcflw to GFS_Data(cdata%blk_no)%Radtend%sfcflw -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 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 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 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 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 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 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 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 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 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 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 vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -DEBUG: Updating local name of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from vconvtend to GFS_Data(cdata%blk_no)%Coupling%vconvtend -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 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 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 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 qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -DEBUG: Updating local name of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from qconvtend to GFS_Data(cdata%blk_no)%Coupling%qconvtend -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable index_for_ice_friendly_aerosols from ntia to GFS_Control%ntia -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 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 -DEBUG: Updating local name of variable index_for_rain_water from ntrw to GFS_Control%ntrw -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 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 -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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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_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 -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 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 -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 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_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 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)%Tbd%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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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)%Tbd%iceprv -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 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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable in_number_concentration from in_nm to GFS_Data(cdata%blk_no)%Tbd%in_nm -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 -DEBUG: Updating local name of variable ccpp_block_number from blk_no to cdata%blk_no -DEBUG: Updating local name of variable horizontal_dimension from blksz2(ccpp_block_number) to GFS_Control%blksz2(cdata%blk_no) -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 GFS_statein_type of variable GFS_statein_type from new to old metadata -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 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 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 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 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 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 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 swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from swhc to GFS_Data(cdata%blk_no)%Radtend%swhc -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 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 -DEBUG: Updating local name of variable starting_y_direction_index from js to CCPP_interstitial%js -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 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 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 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 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 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 -DEBUG: Updating local name of variable index_for_ozone from ntoz to GFS_Control%ntoz -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable ending_y_direction_index from je to CCPP_interstitial%je -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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable index_for_graupel_effective_radius from ngeffr to GFS_Control%ngeffr -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 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 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 -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 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 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 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 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 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 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 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 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 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 tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from tconvtend to GFS_Data(cdata%blk_no)%Coupling%tconvtend -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 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 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 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 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 -DEBUG: Updating local name of variable cloud_condensed_water_conversion_threshold from wminco to GFS_Control%wminco -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 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 -DEBUG: Updating local name of variable surface_wind_stress from stress to GFS_Interstitial(cdata%thrd_no)%stress -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 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 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 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 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 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 -DEBUG: Updating local name of variable height_of_mountain_blocking from zmtb to GFS_Interstitial(cdata%thrd_no)%zmtb -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 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 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 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 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 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 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 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 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 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 -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 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 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 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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from htrlw to GFS_Data(cdata%blk_no)%Radtend%htrlw -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 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 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial from new to old metadata -DEBUG: Updating local name of variable surface_x_momentum_flux_for_coupling_interstitial from dusfc_cice to GFS_Interstitial(cdata%thrd_no)%dusfc_cice -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 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 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 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 -DEBUG: Variable index_for_rain_effective_radius was in old metadata format and has already been converted -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 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 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 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 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 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 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 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 -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 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 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 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 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 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 -DEBUG: Variable index_for_ice_friendly_aerosols was in old metadata format and has already been converted -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 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 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 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 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 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 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 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 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 -DEBUG: Variable topfsw_type is in old metadata format, no conversion necessary -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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable index_for_cloud_amount from ntclamt to GFS_Control%ntclamt -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Variable index_for_liquid_cloud_condensate was in old metadata format and has already been converted -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable index_for_ice_cloud_number_concentration from ntinc to GFS_Control%ntinc -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -DEBUG: Updating local name of variable convective_available_potential_energy_for_coupling from cape to GFS_Data(cdata%blk_no)%Coupling%cape -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 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)%Tbd%dsnowprv -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 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 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 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 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 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 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 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 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_for_ozone was in old metadata format and has already been converted -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 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 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 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 -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 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 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 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 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 lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from lwhc to GFS_Data(cdata%blk_no)%Radtend%lwhc -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 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 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 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 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 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 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 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 -DEBUG: Variable index_for_water_vapor was in old metadata format and has already been converted -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 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 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 -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 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 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 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 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 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 -DEBUG: Updating local name of variable index_for_graupel from ntgl to GFS_Control%ntgl -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 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 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 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 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 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 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 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 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 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 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 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 -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 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 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 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 -DEBUG: Variable index_for_liquid_cloud_number_concentration was in old metadata format and has already been converted -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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable array_dimension_of_2d_arrays_for_microphysics from num_p2d to GFS_Control%num_p2d -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 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 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 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 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 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 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 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 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 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 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 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 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)%Tbd%draincprv -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 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 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 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 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 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 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 htsw0 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 htsw0 to GFS_Data(cdata%blk_no)%Tbd%htsw0 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 lgocart of variable flag_gocart from new to old metadata -DEBUG: Updating local name of variable flag_gocart from lgocart to GFS_Control%lgocart -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -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 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 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 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 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 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 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) -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 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 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 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 -DEBUG: Variable index_for_water_friendly_aerosols was in old metadata format and has already been converted -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 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 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)%Tbd%snowprv -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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)%Tbd%dgraupelprv -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 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 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 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 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 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 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 -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) -DEBUG: Variable sfcfsw_type is in old metadata format, no conversion necessary -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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable flag_for_microphysics_scheme from imp_physics to GFS_Control%imp_physics -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -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 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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable number_of_gases_for_multi_gases_physics from ngas to CCPP_interstitial%ngas -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)%Tbd%diceprv -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 -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 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 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 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 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 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 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 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 -DEBUG: Variable index_for_graupel was in old metadata format and has already been converted -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 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 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 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 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 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 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 -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 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 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 htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from htrsw to GFS_Data(cdata%blk_no)%Radtend%htrsw -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 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 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 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 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 -DEBUG: Variable index_for_rain_water was in old metadata format and has already been converted -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 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: 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 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 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 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 -DEBUG: Updating local name of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from indcld to GFS_Control%indcld -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -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 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 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 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 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 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 -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 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 -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 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 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 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 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 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 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 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 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 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 blksz(ccpp_block_number) of variable horizontal_loop_extent 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_loop_extent from blksz(ccpp_block_number) to GFS_Control%blksz(cdata%blk_no) -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 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 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 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 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 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 -DEBUG: Updating local name of variable density_of_frozen_precipitation from rhofr to GFS_Data(cdata%blk_no)%Sfcprop%rhofr -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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable index_for_turbulent_kinetic_energy from ntke to GFS_Control%ntke -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 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 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 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 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 -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 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 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial from new to old metadata -DEBUG: Updating local name of variable surface_upward_latent_heat_flux_for_coupling_interstitial from dqsfc_cice to GFS_Interstitial(cdata%thrd_no)%dqsfc_cice -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 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 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 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 -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 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 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 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 -DEBUG: Updating local name of variable number_of_days_in_year from yearlen to GFS_Control%yearlen -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 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 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 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 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 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 -DEBUG: Variable index_for_cloud_amount was in old metadata format and has already been converted -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 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 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 -DEBUG: Updating local name of variable index_for_ice_effective_radius from nieffr to GFS_Control%nieffr -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 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 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 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 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 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 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 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 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 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 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 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial from new to old metadata -DEBUG: Updating local name of variable surface_upward_sensible_heat_flux_for_coupling_interstitial from dtsfc_cice to GFS_Interstitial(cdata%thrd_no)%dtsfc_cice -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 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 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 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 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 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 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 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 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 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)%Tbd%drainncprv -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -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 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 flipv of variable flag_flip from new to old metadata -DEBUG: Updating local name of variable flag_flip from flipv to GFS_Control%flipv -DEBUG: Variable index_for_graupel_effective_radius was in old metadata format and has already been converted -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 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 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 htswc 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 htswc to GFS_Data(cdata%blk_no)%Tbd%htswc -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 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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 con_p0 of variable standard_atmospheric_pressure from new to old metadata -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -DEBUG: Variable index_for_snow_effective_radius was in old metadata format and has already been converted -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 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 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 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 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 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 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 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 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 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 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 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 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 -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 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 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 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 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 -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 -DEBUG: Variable index_for_cloud_liquid_water_effective_radius was in old metadata format and has already been converted -INFO: Converting local name aero_in of variable flag_for_aerosol_input_MG from new to old metadata -DEBUG: Updating local name of variable flag_for_aerosol_input_MG from aero_in to GFS_Control%aero_in -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 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 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 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 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 -DEBUG: Variable index_for_graupel_number_concentration was in old metadata format and has already been converted -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 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 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 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 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 kind_LOGICAL of variable kind_LOGICAL from new to old metadata -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 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 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) -DEBUG: Variable index_for_ice_effective_radius was in old metadata format and has already been converted -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 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 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 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 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 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 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 -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) -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 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 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 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 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 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 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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial from new to old metadata -DEBUG: Updating local name of variable surface_y_momentum_flux_for_coupling_interstitial from dvsfc_cice to GFS_Interstitial(cdata%thrd_no)%dvsfc_cice -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -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)%Tbd%raincprv -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 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 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) -DEBUG: Variable index_for_turbulent_kinetic_energy was in old metadata format and has already been converted -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 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 -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 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 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 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 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 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 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 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 -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) -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 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 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 qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy 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 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 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 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 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 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 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 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 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 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 -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 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 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 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 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) -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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial from new to old metadata -DEBUG: Updating local name of variable surface_upwelling_longwave_flux_for_coupling_interstitial from ulwsfc_cice to GFS_Interstitial(cdata%thrd_no)%ulwsfc_cice -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 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 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 -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 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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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) -DEBUG: Variable index_for_snow_number_concentration was in old metadata format and has already been converted -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 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 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 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 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 -DEBUG: Variable ccpp_thread_number was in old metadata format and has already been converted -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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable flag_for_ozone_physics from oz_phys to GFS_Control%oz_phys -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -DEBUG: Variable array_dimension_of_2d_arrays_for_microphysics was in old metadata format and has already been converted -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 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 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 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 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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d was in old metadata format and has already been converted -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 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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Variable index_for_ice_cloud_number_concentration was in old metadata format and has already been converted -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 -DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from htlw0 to GFS_Data(cdata%blk_no)%Tbd%htlw0 -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 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 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 htlwc 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 htlwc to GFS_Data(cdata%blk_no)%Tbd%htlwc -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 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 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 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 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 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 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 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 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 con_t0c of variable temperature_at_zero_celsius from new to old metadata -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 -DEBUG: Variable index_for_cloud_fraction_in_3d_arrays_for_microphysics was in old metadata format and has already been converted -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 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 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 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 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 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 -DEBUG: Updating local name of variable instantaneous_dry_deposition from drydep to GFS_Data(cdata%blk_no)%Intdiag%drydep -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 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 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 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 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 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 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 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 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 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 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 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 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 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 isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -DEBUG: Updating local name of variable flag_for_combination_of_sppt_with_isppt_deep from isppt_deep to GFS_Control%isppt_deep -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 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 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 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 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 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 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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -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 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 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 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 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 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 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 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 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 uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -DEBUG: Updating local name of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from uconvtend to GFS_Data(cdata%blk_no)%Coupling%uconvtend -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 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 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 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 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 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 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 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 mom4ice of variable flag_for_mom4_coupling from new to old metadata -DEBUG: Updating local name of variable flag_for_mom4_coupling from mom4ice to GFS_Control%mom4ice -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 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 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 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 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 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 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)%Tbd%graupelprv -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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -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 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: Metadata table for model FV3 written to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 GFS_surface_composites.F90 with registry OrderedDict([('GFS_surface_composites_pre', {'GFS_surface_composites_pre': {'GFS_surface_composites_pre_run': [17, 147], 'GFS_surface_composites_pre_finalize': [12, 13], 'GFS_surface_composites_pre_init': [10, 11]}}), ('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, 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': [17, 147], 'GFS_surface_composites_pre_finalize': [12, 13], 'GFS_surface_composites_pre_init': [10, 11]}}), ('GFS_surface_composites_inter', {'GFS_surface_composites_inter': {'GFS_surface_composites_inter_run': [162, 198], 'GFS_surface_composites_inter_init': [155, 156], 'GFS_surface_composites_inter_finalize': [157, 158]}}), ('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 -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': [17, 147], 'GFS_surface_composites_pre_finalize': [12, 13], 'GFS_surface_composites_pre_init': [10, 11]}}), ('GFS_surface_composites_inter', {'GFS_surface_composites_inter': {'GFS_surface_composites_inter_run': [162, 198], 'GFS_surface_composites_inter_init': [155, 156], 'GFS_surface_composites_inter_finalize': [157, 158]}}), ('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, 414]}})]) -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, 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, 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 -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, 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, 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 sfc_ocean.F with registry OrderedDict([('sfc_ocean', {'sfc_ocean': {'sfc_ocean_finalize': [11, 12], 'sfc_ocean_init': [7, 8], 'sfc_ocean_run': [18, 134]}})]) -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 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 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 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 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, kinematic_surface_upward_latent_heat_flux, 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 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, tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step, 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, 93], '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 -DEBUG: Variables in subroutine GFS_SCNV_generic_post_init: -DEBUG: Variables in subroutine GFS_SCNV_generic_post_finalize: -DEBUG: Parsing file GFS_rrtmg_pre.F90 with registry OrderedDict([('GFS_rrtmg_pre', {'GFS_rrtmg_pre': {'GFS_rrtmg_pre_finalize': [622, 623], 'GFS_rrtmg_pre_init': [9, 10], 'GFS_rrtmg_pre_run': [16, 619]}})]) -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, 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: 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, 615], '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, soil_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, soil_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 samfdeepcnv.f with registry OrderedDict([('samfdeepcnv', {'samfdeepcnv': {'samfdeepcnv_run': [63, 2759], '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, flag_for_cellular_automata, fraction_of_cellular_automata_for_deep_convection, 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 satmedmfvdif.F with registry OrderedDict([('satmedmfvdif', {'satmedmfvdif': {'satmedmfvdif_init': [6, 7], 'satmedmfvdif_finalize': [8, 9], 'satmedmfvdif_run': [30, 1450]}})]) -DEBUG: Module name: satmedmfvdif -DEBUG: Scheme name: satmedmfvdif -DEBUG: Variables in subroutine satmedmfvdif_init: -DEBUG: Variables in subroutine satmedmfvdif_finalize: -DEBUG: Variables in subroutine satmedmfvdif_run: 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, kinematic_surface_upward_latent_heat_flux, 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, ccpp_error_message, ccpp_error_flag -DEBUG: Parsing file ozphys.f with registry OrderedDict([('ozphys', {'ozphys': {'ozphys_run': [27, 158], 'ozphys_finalize': [15, 16], 'ozphys_init': [9, 10]}})]) -DEBUG: Skipping blank table ozphys_finalize -DEBUG: Skipping blank table ozphys_init -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: -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 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_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': [31, 137], 'ozphys_2015_finalize': [13, 14], 'ozphys_2015_init': [7, 8]}})]) -DEBUG: Skipping blank table ozphys_2015_finalize -DEBUG: Skipping blank table ozphys_2015_init -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: -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, 21], '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', {})]) -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, 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, 21], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [27, 28], 'GFS_suite_interstitial_phys_reset_run': [32, 43], 'GFS_suite_interstitial_phys_reset_init': [25, 26]}}), ('GFS_suite_interstitial_1', {}), ('GFS_suite_interstitial_2', {}), ('GFS_suite_stateout_reset', {}), ('GFS_suite_stateout_update', {}), ('GFS_suite_interstitial_3', {}), ('GFS_suite_interstitial_4', {})]) -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, ccpp_error_message, ccpp_error_flag, GFS_control_type_instance -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, 21], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [27, 28], 'GFS_suite_interstitial_phys_reset_run': [32, 43], 'GFS_suite_interstitial_phys_reset_init': [25, 26]}}), ('GFS_suite_interstitial_1', {'GFS_suite_interstitial_1': {'GFS_suite_interstitial_1_init': [47, 48], 'GFS_suite_interstitial_1_finalize': [49, 50], 'GFS_suite_interstitial_1_run': [54, 94]}}), ('GFS_suite_interstitial_2', {}), ('GFS_suite_stateout_reset', {}), ('GFS_suite_stateout_update', {}), ('GFS_suite_interstitial_3', {}), ('GFS_suite_interstitial_4', {})]) -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, 21], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [27, 28], 'GFS_suite_interstitial_phys_reset_run': [32, 43], 'GFS_suite_interstitial_phys_reset_init': [25, 26]}}), ('GFS_suite_interstitial_1', {'GFS_suite_interstitial_1': {'GFS_suite_interstitial_1_init': [47, 48], 'GFS_suite_interstitial_1_finalize': [49, 50], 'GFS_suite_interstitial_1_run': [54, 94]}}), ('GFS_suite_interstitial_2', {'GFS_suite_interstitial_2': {'GFS_suite_interstitial_2_init': [100, 101], 'GFS_suite_interstitial_2_finalize': [102, 103], 'GFS_suite_interstitial_2_run': [109, 253]}}), ('GFS_suite_stateout_reset', {}), ('GFS_suite_stateout_update', {}), ('GFS_suite_interstitial_3', {}), ('GFS_suite_interstitial_4', {})]) -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_timestep, tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep, 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, 21], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [27, 28], 'GFS_suite_interstitial_phys_reset_run': [32, 43], 'GFS_suite_interstitial_phys_reset_init': [25, 26]}}), ('GFS_suite_interstitial_1', {'GFS_suite_interstitial_1': {'GFS_suite_interstitial_1_init': [47, 48], 'GFS_suite_interstitial_1_finalize': [49, 50], 'GFS_suite_interstitial_1_run': [54, 94]}}), ('GFS_suite_interstitial_2', {'GFS_suite_interstitial_2': {'GFS_suite_interstitial_2_init': [100, 101], 'GFS_suite_interstitial_2_finalize': [102, 103], 'GFS_suite_interstitial_2_run': [109, 253]}}), ('GFS_suite_stateout_reset', {'GFS_suite_stateout_reset': {'GFS_suite_stateout_reset_finalize': [259, 260], 'GFS_suite_stateout_reset_init': [257, 258], 'GFS_suite_stateout_reset_run': [264, 284]}}), ('GFS_suite_stateout_update', {}), ('GFS_suite_interstitial_3', {}), ('GFS_suite_interstitial_4', {})]) -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, 21], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [27, 28], 'GFS_suite_interstitial_phys_reset_run': [32, 43], 'GFS_suite_interstitial_phys_reset_init': [25, 26]}}), ('GFS_suite_interstitial_1', {'GFS_suite_interstitial_1': {'GFS_suite_interstitial_1_init': [47, 48], 'GFS_suite_interstitial_1_finalize': [49, 50], 'GFS_suite_interstitial_1_run': [54, 94]}}), ('GFS_suite_interstitial_2', {'GFS_suite_interstitial_2': {'GFS_suite_interstitial_2_init': [100, 101], 'GFS_suite_interstitial_2_finalize': [102, 103], 'GFS_suite_interstitial_2_run': [109, 253]}}), ('GFS_suite_stateout_reset', {'GFS_suite_stateout_reset': {'GFS_suite_stateout_reset_finalize': [259, 260], 'GFS_suite_stateout_reset_init': [257, 258], 'GFS_suite_stateout_reset_run': [264, 284]}}), ('GFS_suite_stateout_update', {'GFS_suite_stateout_update': {'GFS_suite_stateout_update_init': [288, 289], 'GFS_suite_stateout_update_run': [295, 318], 'GFS_suite_stateout_update_finalize': [290, 291]}}), ('GFS_suite_interstitial_3', {}), ('GFS_suite_interstitial_4', {})]) -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, 21], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [27, 28], 'GFS_suite_interstitial_phys_reset_run': [32, 43], 'GFS_suite_interstitial_phys_reset_init': [25, 26]}}), ('GFS_suite_interstitial_1', {'GFS_suite_interstitial_1': {'GFS_suite_interstitial_1_init': [47, 48], 'GFS_suite_interstitial_1_finalize': [49, 50], 'GFS_suite_interstitial_1_run': [54, 94]}}), ('GFS_suite_interstitial_2', {'GFS_suite_interstitial_2': {'GFS_suite_interstitial_2_init': [100, 101], 'GFS_suite_interstitial_2_finalize': [102, 103], 'GFS_suite_interstitial_2_run': [109, 253]}}), ('GFS_suite_stateout_reset', {'GFS_suite_stateout_reset': {'GFS_suite_stateout_reset_finalize': [259, 260], 'GFS_suite_stateout_reset_init': [257, 258], 'GFS_suite_stateout_reset_run': [264, 284]}}), ('GFS_suite_stateout_update', {'GFS_suite_stateout_update': {'GFS_suite_stateout_update_init': [288, 289], 'GFS_suite_stateout_update_run': [295, 318], 'GFS_suite_stateout_update_finalize': [290, 291]}}), ('GFS_suite_interstitial_3', {'GFS_suite_interstitial_3': {'GFS_suite_interstitial_3_run': [331, 480], 'GFS_suite_interstitial_3_finalize': [324, 325], 'GFS_suite_interstitial_3_init': [322, 323]}}), ('GFS_suite_interstitial_4', {})]) -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_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, 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, 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, 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, 21], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [27, 28], 'GFS_suite_interstitial_phys_reset_run': [32, 43], 'GFS_suite_interstitial_phys_reset_init': [25, 26]}}), ('GFS_suite_interstitial_1', {'GFS_suite_interstitial_1': {'GFS_suite_interstitial_1_init': [47, 48], 'GFS_suite_interstitial_1_finalize': [49, 50], 'GFS_suite_interstitial_1_run': [54, 94]}}), ('GFS_suite_interstitial_2', {'GFS_suite_interstitial_2': {'GFS_suite_interstitial_2_init': [100, 101], 'GFS_suite_interstitial_2_finalize': [102, 103], 'GFS_suite_interstitial_2_run': [109, 253]}}), ('GFS_suite_stateout_reset', {'GFS_suite_stateout_reset': {'GFS_suite_stateout_reset_finalize': [259, 260], 'GFS_suite_stateout_reset_init': [257, 258], 'GFS_suite_stateout_reset_run': [264, 284]}}), ('GFS_suite_stateout_update', {'GFS_suite_stateout_update': {'GFS_suite_stateout_update_init': [288, 289], 'GFS_suite_stateout_update_run': [295, 318], 'GFS_suite_stateout_update_finalize': [290, 291]}}), ('GFS_suite_interstitial_3', {'GFS_suite_interstitial_3': {'GFS_suite_interstitial_3_run': [331, 480], 'GFS_suite_interstitial_3_finalize': [324, 325], 'GFS_suite_interstitial_3_init': [322, 323]}}), ('GFS_suite_interstitial_4', {'GFS_suite_interstitial_4': {'GFS_suite_interstitial_4_finalize': [486, 487], 'GFS_suite_interstitial_4_run': [491, 580], 'GFS_suite_interstitial_4_init': [484, 485]}})]) -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, 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_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, index_for_liquid_cloud_number_concentration, index_for_ice_cloud_number_concentration, pi, instantaneous_water_vapor_specific_humidity_tendency_due_to_convection -DEBUG: Variables in subroutine GFS_suite_interstitial_4_init: -DEBUG: Parsing file samfshalcnv.f with registry OrderedDict([('samfshalcnv', {'samfshalcnv': {'samfshalcnv_run': [43, 1782], 'samfshalcnv_finalize': [17, 18], 'samfshalcnv_init': [11, 12]}}), ('samfshalcnv_post', {})]) -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 samfshalcnv.f with registry OrderedDict([('samfshalcnv', {'samfshalcnv': {'samfshalcnv_run': [43, 1782], 'samfshalcnv_finalize': [17, 18], 'samfshalcnv_init': [11, 12]}}), ('samfshalcnv_post', {'samfshalcnv_post': {'samfshalcnv_post_run': [1793, 1839], 'samfshalcnv_post_finalize': [1846, 1847], 'samfshalcnv_post_init': [1842, 1843]}})]) -DEBUG: Module name: samfshalcnv_post -DEBUG: Scheme name: samfshalcnv_post -DEBUG: Variables in subroutine samfshalcnv_post_run: horizontal_loop_extent, vertical_dimension, lwe_thickness_of_shallow_convective_precipitation_amount, convective_cloud_water_mixing_ratio, convective_cloud_cover, ccpp_error_message, ccpp_error_flag, flag_diagnostics, flag_shallow_convective_cloud, dynamics_to_physics_timestep_ratio, 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_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 -DEBUG: Variables in subroutine samfshalcnv_post_finalize: -DEBUG: Variables in subroutine samfshalcnv_post_init: -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': [23, 24], 'noahmpdrv_run': [33, 699], 'noahmpdrv_init': [11, 22]}})]) -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_canopy_heat_storage, 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 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, kinematic_surface_upward_latent_heat_flux, 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 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, 159], '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, 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, 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, surface_upwelling_longwave_flux_for_coupling, surface_upwelling_longwave_flux_for_coupling_interstitial, surface_x_momentum_flux_for_coupling_interstitial, surface_y_momentum_flux_for_coupling_interstitial, surface_upward_sensible_heat_flux_for_coupling_interstitial, surface_upward_latent_heat_flux_for_coupling_interstitial, sea_ice_temperature, sea_surface_temperature, sea_ice_concentration, sea_ice_thickness, flag_nonzero_land_surface_fraction, flag_nonzero_sea_ice_surface_fraction, flag_nonzero_wet_surface_fraction, wind_speed_at_lowest_model_layer, x_wind_at_lowest_model_layer, y_wind_at_lowest_model_layer, surface_wind_enhancement_due_to_convection, 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, 159], 'GFS_surface_generic_pre_init': [10, 11]}}), ('GFS_surface_generic_post', {'GFS_surface_generic_post': {'GFS_surface_generic_post_run': [176, 282], 'GFS_surface_generic_post_finalize': [171, 172], 'GFS_surface_generic_post_init': [169, 170]}})]) -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, flag_nonzero_sea_ice_surface_fraction, flag_nonzero_wet_surface_fraction, x_wind_at_lowest_model_layer, y_wind_at_lowest_model_layer, ccpp_error_message, ccpp_error_flag, flag_for_wave_coupling, flag_diagnostics, 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_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 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 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, 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, 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 GFS_debug.F90 with registry OrderedDict([('GFS_diagtoscreen', {'GFS_diagtoscreen': {'GFS_diagtoscreen_init': [26, 27], 'GFS_diagtoscreen_finalize': [28, 29], 'GFS_diagtoscreen_run': [33, 486]}}), ('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, 486]}}), ('GFS_interstitialtoscreen', {'GFS_interstitialtoscreen': {'GFS_interstitialtoscreen_finalize': [654, 655], 'GFS_interstitialtoscreen_run': [659, 733], 'GFS_interstitialtoscreen_init': [652, 653]}}), ('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, 486]}}), ('GFS_interstitialtoscreen', {'GFS_interstitialtoscreen': {'GFS_interstitialtoscreen_finalize': [654, 655], 'GFS_interstitialtoscreen_run': [659, 733], 'GFS_interstitialtoscreen_init': [652, 653]}}), ('GFS_abort', {'GFS_abort': {'GFS_abort_init': [739, 740], 'GFS_abort_run': [746, 763], 'GFS_abort_finalize': [741, 742]}}), ('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, 486]}}), ('GFS_interstitialtoscreen', {'GFS_interstitialtoscreen': {'GFS_interstitialtoscreen_finalize': [654, 655], 'GFS_interstitialtoscreen_run': [659, 733], 'GFS_interstitialtoscreen_init': [652, 653]}}), ('GFS_abort', {'GFS_abort': {'GFS_abort_init': [739, 740], 'GFS_abort_run': [746, 763], 'GFS_abort_finalize': [741, 742]}}), ('GFS_checkland', {'GFS_checkland': {'GFS_checkland_run': [776, 848], 'GFS_checkland_finalize': [771, 772], 'GFS_checkland_init': [769, 770]}})]) -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 module_MYNNrad_pre.F90 with registry OrderedDict([('mynnrad_pre', {'mynnrad_pre': {'mynnrad_pre_init': [6, 7], 'mynnrad_pre_run': [27, 93], '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, 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 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 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, kinematic_surface_upward_latent_heat_flux, 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 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, tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step, ccpp_error_message, ccpp_error_flag -DEBUG: Variables in subroutine rrtmg_lw_post_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_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 -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, 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 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 cu_ntiedtke.F90 with registry OrderedDict([('cu_ntiedtke', {'cu_ntiedtke': {'cu_ntiedtke_init': [77, 93], 'cu_ntiedtke_finalize': [98, 99], 'cu_ntiedtke_run': [112, 295]}})]) -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, 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_total_tracers, 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 cires_ugwp_post.F90 with registry OrderedDict([('cires_ugwp_post', {'cires_ugwp_post': {'cires_ugwp_post_init': [8, 9], 'cires_ugwp_post_run': [16, 67], 'cires_ugwp_post_finalize': [70, 71]}})]) -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, flag_diagnostics, flag_diagnostics_3D, instantaneous_x_stress_due_to_gravity_wave_drag, instantaneous_y_stress_due_to_gravity_wave_drag, 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, cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag, ccpp_error_message, ccpp_error_flag -DEBUG: Variables in subroutine cires_ugwp_post_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, kinematic_surface_upward_latent_heat_flux, 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 sfc_diff.f with registry OrderedDict([('sfc_diff', {'sfc_diff': {'sfc_diff_init': [12, 13], 'sfc_diff_finalize': [14, 15], 'sfc_diff_run': [52, 290]}})]) -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 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 sfc_noahmp_pre.F90 with registry OrderedDict([('sfc_noahmp_pre', {'sfc_noahmp_pre': {'sfc_noahmp_pre_finalize': [10, 11], 'sfc_noahmp_pre_init': [8, 9], 'sfc_noahmp_pre_run': [16, 42]}})]) -DEBUG: Module name: sfc_noahmp_pre -DEBUG: Scheme name: sfc_noahmp_pre -DEBUG: Variables in subroutine sfc_noahmp_pre_finalize: -DEBUG: Variables in subroutine sfc_noahmp_pre_init: -DEBUG: Variables in subroutine sfc_noahmp_pre_run: horizontal_loop_extent, flag_for_land_surface_scheme, flag_for_noahmp_land_surface_scheme, flag_for_microphysics_scheme, flag_for_gfdl_microphysics_scheme, flag_for_morrison_gettelman_microphysics_scheme, time_step_for_physics, 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, explicit_rainfall_rate_from_previous_timestep, convective_precipitation_rate_from_previous_timestep, ice_precipitation_rate_from_previous_timestep, snow_precipitation_rate_from_previous_timestep, graupel_precipitation_rate_from_previous_timestep, 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', {})]) -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, mass_fraction_of_convective_cloud_liquid_water, mass_fraction_of_convective_cloud_ice, convective_cloud_fraction_for_microphysics, 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 m_micro.F90 with registry OrderedDict([('m_micro', {'m_micro': {'m_micro_run': [71, 1239], 'm_micro_init': [17, 50], 'm_micro_finalize': [55, 56]}})]) -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_timestep, tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep, 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, flag_for_aerosol_input_MG, in_number_concentration, ccn_number_concentration, flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics, flag_skip_macro, flag_print, mg_tuning_factor_for_alphas, mg_minimum_cloud_condensed_water_and_ice_mixing_ratio, flag_for_pdf_for_morrison_gettelman_microphysics_scheme, horizontal_index_of_printed_column, 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, 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 gfdl_fv_sat_adj.F90 with registry OrderedDict([('fv_sat_adj', {'fv_sat_adj': {'fv_sat_adj_finalize': [155, 172], 'fv_sat_adj_run': [186, 307], 'fv_sat_adj_init': [104, 149]}})]) -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 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 gcm_shoc.F90 with registry OrderedDict([('shoc', {'shoc': {'shoc_finalize': [11, 12], 'shoc_init': [9, 10], 'shoc_run': [18, 144]}})]) -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, flag_for_shoc, flag_for_shoc_after_convection, flag_mg3_as_mg2, flag_for_microphysics_scheme, flag_for_gfdl_microphysics_scheme, flag_for_zhao_carr_microphysics_scheme, flag_for_zhao_carr_pdf_microphysics_scheme, flag_for_morrison_gettelman_microphysics_scheme, number_of_frozen_precipitation_species, 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, 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, time_step_for_physics, mpi_rank, air_pressure, 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, kinematic_surface_upward_latent_heat_flux, prandtl_number, flag_skip_macro, ice_water_mixing_ratio_convective_transport_tracer, cloud_condensed_water_mixing_ratio_convective_transport_tracer, cloud_condensed_water_mixing_ratio_updated_by_physics, cloud_droplet_number_concentration_updated_by_physics, ice_number_concentration_updated_by_physics, air_temperature_updated_by_physics, water_vapor_specific_humidity_updated_by_physics, 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_rrtmg_post.F90 with registry OrderedDict([('GFS_rrtmg_post', {'GFS_rrtmg_post': {'GFS_rrtmg_post_init': [8, 9], 'GFS_rrtmg_post_run': [13, 140], 'GFS_rrtmg_post_finalize': [143, 144]}})]) -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, ccpp_error_message, ccpp_error_flag -DEBUG: Variables in subroutine GFS_rrtmg_post_finalize: -DEBUG: Parsing file GFS_GWD_generic.F90 with registry OrderedDict([('GFS_GWD_generic_pre', {'GFS_GWD_generic_pre': {'GFS_GWD_generic_pre_run': [15, 84], 'GFS_GWD_generic_pre_finalize': [91, 92], 'GFS_GWD_generic_pre_init': [7, 8]}})]) -DEBUG: Skipping blank table GFS_GWD_generic_pre_finalize -DEBUG: Skipping blank table GFS_GWD_generic_pre_init -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 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 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_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, 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, 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, time_step_for_physics -DEBUG: Variables in subroutine GFS_MP_generic_post_finalize: -DEBUG: Parsing file cu_gf_driver.F90 with registry OrderedDict([('cu_gf_driver', {'cu_gf_driver': {'cu_gf_driver_run': [54, 665], 'cu_gf_driver_init': [17, 33], 'cu_gf_driver_finalize': [38, 39]}})]) -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: 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, 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 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, 205], '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, 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_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, 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, 205], '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': [209, 210], 'GFS_PBL_generic_post_finalize': [211, 212], 'GFS_PBL_generic_post_run': [216, 468]}})]) -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, 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_chemistry_coupling, flag_for_aerosol_physics, flag_for_hedmf, flag_for_shoc, flag_for_scale_aware_TKE_moist_EDMF_PBL, 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_timestep, tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep, 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, kinematic_surface_upward_sensible_heat_flux, instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling, sea_area_fraction, sea_ice_concentration, surface_x_momentum_flux_for_coupling_interstitial, surface_y_momentum_flux_for_coupling_interstitial, surface_upward_sensible_heat_flux_for_coupling_interstitial, surface_upward_latent_heat_flux_for_coupling_interstitial, 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 mp_thompson_post.F90 with registry OrderedDict([('mp_thompson_post', {'mp_thompson_post': {'mp_thompson_post_init': [14, 40], 'mp_thompson_post_finalize': [101, 113], 'mp_thompson_post_run': [46, 95]}})]) -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, mpi_comm, mpi_rank, mpi_root -DEBUG: Parsing file mp_thompson.F90 with registry OrderedDict([('mp_thompson', {'mp_thompson': {'mp_thompson_run': [95, 282], 'mp_thompson_finalize': [289, 299], 'mp_thompson_init': [18, 86]}})]) -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_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 gwdps.f with registry OrderedDict([('gwdps', {'gwdps': {'gwdps_init': [8, 9], 'gwdps_run': [193, 1257], 'gwdps_finalize': [1262, 1263]}}), ('gwdps_post', {})]) -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 gwdps.f with registry OrderedDict([('gwdps', {'gwdps': {'gwdps_init': [8, 9], 'gwdps_run': [193, 1257], 'gwdps_finalize': [1262, 1263]}}), ('gwdps_post', {'gwdps_post': {'gwdps_post_init': [1271, 1272], 'gwdps_post_finalize': [1300, 1301], 'gwdps_post_run': [1276, 1297]}})]) -DEBUG: Skipping blank table gwdps_post_init -DEBUG: Skipping blank table gwdps_post_finalize -DEBUG: Module name: gwdps_post -DEBUG: Scheme name: gwdps_post -DEBUG: Variables in subroutine gwdps_post_init: -DEBUG: Variables in subroutine gwdps_post_finalize: -DEBUG: Variables in subroutine gwdps_post_run: tendency_of_y_wind_due_to_model_physics, tendency_of_x_wind_due_to_model_physics, tendency_of_air_temperature_due_to_model_physics, instantaneous_x_stress_due_to_gravity_wave_drag, instantaneous_y_stress_due_to_gravity_wave_drag, ccpp_error_message, ccpp_error_flag, 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_orographic_gravity_wave_drag, cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag, cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag -DEBUG: Parsing file cires_ugwp.F90 with registry OrderedDict([('cires_ugwp', {'cires_ugwp': {'cires_ugwp_run': [105, 265], 'cires_ugwp_finalize': [80, 91], 'cires_ugwp_init': [29, 70]}})]) -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, 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 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 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_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, kinematic_surface_upward_latent_heat_flux, 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_air_temperature_due_to_longwave_heating_on_radiation_time_step, 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_timestep, tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep, 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': [118, 830], '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, 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, 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 GFS_stochastics.F90 with registry OrderedDict([('GFS_stochastics', {'GFS_stochastics': {'GFS_stochastics_run': [22, 168], '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, 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, 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 drag_suite.F90 with registry OrderedDict([('drag_suite_pre', {'drag_suite_pre': {'drag_suite_pre_init': [9, 10], 'drag_suite_pre_finalize': [82, 83], 'drag_suite_pre_run': [17, 75]}}), ('drag_suite', {}), ('drag_suite_post', {})]) -DEBUG: Skipping blank table drag_suite_pre_init -DEBUG: Skipping blank table drag_suite_pre_finalize -DEBUG: Module name: drag_suite_pre -DEBUG: Scheme name: drag_suite_pre -DEBUG: Variables in subroutine drag_suite_pre_init: -DEBUG: Variables in subroutine drag_suite_pre_finalize: -DEBUG: Variables in subroutine drag_suite_pre_run: horizontal_loop_extent, number_of_statistical_measures_of_subgrid_orography, statistical_measures_of_subgrid_orography, 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, ccpp_error_message, ccpp_error_flag -DEBUG: Parsing file drag_suite.F90 with registry OrderedDict([('drag_suite_pre', {'drag_suite_pre': {'drag_suite_pre_init': [9, 10], 'drag_suite_pre_finalize': [82, 83], 'drag_suite_pre_run': [17, 75]}}), ('drag_suite', {'drag_suite': {'drag_suite_finalize': [1259, 1260], 'drag_suite_run': [268, 1254], 'drag_suite_init': [90, 91]}}), ('drag_suite_post', {})]) -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, 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, ccpp_error_message, ccpp_error_flag, 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, 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 -DEBUG: Variables in subroutine drag_suite_init: -DEBUG: Parsing file drag_suite.F90 with registry OrderedDict([('drag_suite_pre', {'drag_suite_pre': {'drag_suite_pre_init': [9, 10], 'drag_suite_pre_finalize': [82, 83], 'drag_suite_pre_run': [17, 75]}}), ('drag_suite', {'drag_suite': {'drag_suite_finalize': [1259, 1260], 'drag_suite_run': [268, 1254], 'drag_suite_init': [90, 91]}}), ('drag_suite_post', {'drag_suite_post': {'drag_suite_post_init': [1268, 1269], 'drag_suite_post_finalize': [1297, 1298], 'drag_suite_post_run': [1273, 1294]}})]) -DEBUG: Skipping blank table drag_suite_post_init -DEBUG: Skipping blank table drag_suite_post_finalize -DEBUG: Module name: drag_suite_post -DEBUG: Scheme name: drag_suite_post -DEBUG: Variables in subroutine drag_suite_post_init: -DEBUG: Variables in subroutine drag_suite_post_finalize: -DEBUG: Variables in subroutine drag_suite_post_run: ccpp_error_message, ccpp_error_flag, tendency_of_y_wind_due_to_model_physics, tendency_of_x_wind_due_to_model_physics, tendency_of_air_temperature_due_to_model_physics, 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_orographic_gravity_wave_drag, cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag, cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag -DEBUG: Parsing file sfc_cice.f with registry OrderedDict([('sfc_cice', {'sfc_cice': {'sfc_cice_finalize': [12, 13], 'sfc_cice_run': [31, 120], '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, flag_for_chemistry_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_interstitial, surface_upward_sensible_heat_flux_for_coupling_interstitial, surface_x_momentum_flux_for_coupling_interstitial, surface_y_momentum_flux_for_coupling_interstitial, 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 module_MYNNrad_post.F90 with registry OrderedDict([('mynnrad_post', {'mynnrad_post': {'mynnrad_post_finalize': [7, 8], 'mynnrad_post_run': [17, 44], '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, 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 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, 38], '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, soil_vertical_dimension_for_land_surface_model, soil_vertical_dimension, flag_nonzero_land_surface_fraction, 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, 38], 'lsm_ruc_sfc_sice_pre_init': [6, 7]}}), ('lsm_ruc_sfc_sice_post', {'lsm_ruc_sfc_sice_post': {'lsm_ruc_sfc_sice_post_finalize': [48, 49], 'lsm_ruc_sfc_sice_post_init': [46, 47], 'lsm_ruc_sfc_sice_post_run': [55, 78]}})]) -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, soil_vertical_dimension_for_land_surface_model, soil_vertical_dimension, flag_nonzero_land_surface_fraction, soil_temperature, soil_temperature_for_land_surface_model, ccpp_error_message, ccpp_error_flag -DEBUG: Parsing file GFS_DCNV_generic.F90 with registry OrderedDict([('GFS_DCNV_generic_pre', {'GFS_DCNV_generic_pre': {'GFS_DCNV_generic_pre_run': [14, 63], '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_cellular_automata, flag_for_combination_of_sppt_with_isppt_deep, 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, 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, 63], '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': [67, 68], 'GFS_DCNV_generic_post_run': [74, 161], 'GFS_DCNV_generic_post_finalize': [69, 70]}})]) -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, flag_for_cellular_automata, flag_for_combination_of_sppt_with_isppt_deep, 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, ice_water_mixing_ratio_convective_transport_tracer, cloud_condensed_water_mixing_ratio_convective_transport_tracer, 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, convective_available_potential_energy_for_coupling, tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep, tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep, tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep, tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep -DEBUG: Variables in subroutine GFS_DCNV_generic_post_finalize: -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 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 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, 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 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 dcyc2.f with registry OrderedDict([('dcyc2t3', {'dcyc2t3': {'dcyc2t3_init': [14, 15], 'dcyc2t3_run': [166, 298], 'dcyc2t3_finalize': [18, 19]}}), ('dcyc2t3_post', {})]) -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 dcyc2.f with registry OrderedDict([('dcyc2t3', {'dcyc2t3': {'dcyc2t3_init': [14, 15], 'dcyc2t3_run': [166, 298], 'dcyc2t3_finalize': [18, 19]}}), ('dcyc2t3_post', {'dcyc2t3_post': {'dcyc2t3_post_finalize': [313, 314], 'dcyc2t3_post_run': [321, 336], 'dcyc2t3_post_init': [309, 310]}})]) -DEBUG: Skipping blank table dcyc2t3_post_finalize -DEBUG: Skipping blank table dcyc2t3_post_init -DEBUG: Module name: dcyc2t3_post -DEBUG: Scheme name: dcyc2t3_post -DEBUG: Variables in subroutine dcyc2t3_post_finalize: -DEBUG: Variables in subroutine dcyc2t3_post_run: horizontal_loop_extent, surface_downwelling_shortwave_flux, surface_net_downwelling_shortwave_flux, ccpp_error_message, ccpp_error_flag, surface_upwelling_shortwave_flux -DEBUG: Variables in subroutine dcyc2t3_post_init: -DEBUG: Parsing file moninshoc.f with registry OrderedDict([('moninshoc', {'moninshoc': {'moninshoc_run': [21, 529], '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, kinematic_surface_upward_latent_heat_flux, 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, flag_print, horizontal_index_of_printed_column, mpi_rank, 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: -INFO: filtering out variable GFS_stateout_type_instance -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 cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -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 conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep -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 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 explicit_rainfall_rate_from_previous_timestep -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_aerosol_input_MG -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_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_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_shoc_after_convection -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 graupel_precipitation_rate_from_previous_timestep -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_precipitation_rate_from_previous_timestep -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 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 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 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_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_precipitation_rate_from_previous_timestep -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_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 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 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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 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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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 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_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_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_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_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_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_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_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_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_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_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_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 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 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_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_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_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 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 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_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_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_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_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_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_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_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 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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%del 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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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 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_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 angle_from_east_of_maximum_subgrid_orographic_variations in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_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_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 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_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 anisotropy_of_subgrid_orography in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_pre_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 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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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 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_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 asymmetry_of_subgrid_orography in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_pre_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 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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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 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_energy_content_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%te0 in module CCPP_typedefs -DEBUG: Requested variable atmosphere_energy_content_in_column in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%te0_2d in module CCPP_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_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 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_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_maximum in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_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 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_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 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_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 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 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_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_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 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_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_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_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_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_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_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 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 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_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_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_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_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_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 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 cappa_moist_gas_constant_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%cappa in module CCPP_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_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_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_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_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_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_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_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_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_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_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_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run 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_ozphys SCHEME_ozphys SUBROUTINE_ozphys_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_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_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_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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target cdata%errflg in module ccpp_types -DEBUG: Requested variable ccpp_error_flag in MODULE_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_run 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_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_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_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_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_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_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_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target cdata%errflg in module ccpp_types -DEBUG: Requested variable ccpp_error_flag in MODULE_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_post_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_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_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_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_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_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_post_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_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_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_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_cnvc90 SCHEME_cnvc90 SUBROUTINE_cnvc90_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target cdata%errflg in module ccpp_types -DEBUG: Requested variable ccpp_error_flag in MODULE_dcyc2t3_post SCHEME_dcyc2t3_post SUBROUTINE_dcyc2t3_post_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_post_run matched to target cdata%errmsg in module ccpp_types -DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_run matched to target cdata%errmsg in module ccpp_types -DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_run 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_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_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_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_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_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_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_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_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_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_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_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_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_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_post_run matched to target cdata%errmsg in module ccpp_types -DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_post_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_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_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_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_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_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_pre_run matched to target cdata%errmsg in module ccpp_types -DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_post_run matched to target cdata%errmsg in module ccpp_types -DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_post_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_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_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_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_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_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_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_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_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_dcyc2t3_post SCHEME_dcyc2t3_post SUBROUTINE_dcyc2t3_post_run matched to target cdata%errmsg in module ccpp_types -DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_dcyc2t3_post SCHEME_dcyc2t3_post SUBROUTINE_dcyc2t3_post_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_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_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 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 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_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_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_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_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_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_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_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_for_fast_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%area in module CCPP_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_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_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_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_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_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_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_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_convective_transport_tracer 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)%clw(:,:,2) 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_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_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_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_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_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_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_condensed_water_specific_humidity_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%q_con in module CCPP_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_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_fraction_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%qc in module CCPP_typedefs -DEBUG: Requested variable cloud_fraction_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%ntclamt) in module GFS_typedefs -DEBUG: Requested variable cloud_graupel_specific_humidity_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%qg in module CCPP_typedefs -DEBUG: Requested variable cloud_ice_specific_humidity_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%qi in module CCPP_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_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_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_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_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_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_specific_humidity_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%ql in module CCPP_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_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_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_specific_humidity_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%qr in module CCPP_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_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_snow_specific_humidity_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%qs in module CCPP_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_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_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_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_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_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_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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_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_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 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 convective_available_potential_energy_for_coupling 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)%Coupling%cape 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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_post_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_pre SCHEME_m_micro_pre SUBROUTINE_m_micro_pre_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_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_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_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_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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_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_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_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 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_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 convexity_of_subgrid_orography in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_pre_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 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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Control%cdec 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 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 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_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_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_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_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_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_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_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_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_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_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_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_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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_orographic_gravity_wave_drag in MODULE_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_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_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_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_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_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_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_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_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_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_x_wind_due_to_orographic_gravity_wave_drag in MODULE_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_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_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_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_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_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_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_change_in_y_wind_due_to_orographic_gravity_wave_drag in MODULE_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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 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_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 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 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_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 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_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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 effective_radius_of_stratiform_cloud_graupel_particle_in_um in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%ngeffr) in module GFS_typedefs -DEBUG: Requested variable effective_radius_of_stratiform_cloud_graupel_particle_in_um in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%ngeffr) in module GFS_typedefs -DEBUG: Requested variable effective_radius_of_stratiform_cloud_ice_particle_in_um in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nieffr) in module GFS_typedefs -DEBUG: Requested variable effective_radius_of_stratiform_cloud_ice_particle_in_um in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nieffr) in module GFS_typedefs -DEBUG: Requested variable effective_radius_of_stratiform_cloud_ice_particle_in_um in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nieffr) in module GFS_typedefs -DEBUG: Requested variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nleffr) in module GFS_typedefs -DEBUG: Requested variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nleffr) in module GFS_typedefs -DEBUG: Requested variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nleffr) in module GFS_typedefs -DEBUG: Requested variable effective_radius_of_stratiform_cloud_rain_particle_in_um in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nreffr) in module GFS_typedefs -DEBUG: Requested variable effective_radius_of_stratiform_cloud_rain_particle_in_um in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nreffr) in module GFS_typedefs -DEBUG: Requested variable effective_radius_of_stratiform_cloud_snow_particle_in_um in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nseffr) in module GFS_typedefs -DEBUG: Requested variable effective_radius_of_stratiform_cloud_snow_particle_in_um in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nseffr) in module GFS_typedefs -DEBUG: Requested variable effective_radius_of_stratiform_cloud_snow_particle_in_um in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nseffr) in module GFS_typedefs -DEBUG: Requested variable ending_x_direction_index in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%ie in module CCPP_typedefs -DEBUG: Requested variable ending_x_direction_index_domain in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%ied in module CCPP_typedefs -DEBUG: Requested variable ending_y_direction_index in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%je in module CCPP_typedefs -DEBUG: Requested variable ending_y_direction_index_domain in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%jed in module CCPP_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Control%slag 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 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 finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%pkz in module CCPP_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_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_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_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_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_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_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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_post_run matched to target GFS_Control%lssav 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_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_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_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_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_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_post_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_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_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_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_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_h2ophys SCHEME_h2ophys SUBROUTINE_h2ophys_run matched to target GFS_Control%ldiag3d in module GFS_typedefs -DEBUG: Requested variable flag_diagnostics_3D in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Control%ldiag3d 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_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_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_post_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_post_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_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_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_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_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_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_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_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_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_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_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_canopy_heat_storage in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Control%lheatstrg 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_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_cellular_automata in MODULE_GFS_DCNV_generic_pre SCHEME_GFS_DCNV_generic_pre SUBROUTINE_GFS_DCNV_generic_pre_run matched to target GFS_Control%do_ca in module GFS_typedefs -DEBUG: Requested variable flag_for_cellular_automata in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Control%do_ca 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_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_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Control%cplchm 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_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_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_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_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_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_effective_radii in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Control%effr_in in module GFS_typedefs -DEBUG: Requested variable flag_for_combination_of_sppt_with_isppt_deep in MODULE_GFS_DCNV_generic_pre SCHEME_GFS_DCNV_generic_pre SUBROUTINE_GFS_DCNV_generic_pre_run matched to target GFS_Control%isppt_deep in module GFS_typedefs -DEBUG: Requested variable flag_for_combination_of_sppt_with_isppt_deep in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Control%isppt_deep 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_fast_microphysics_energy_conservation in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%fast_mp_consv in module CCPP_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_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_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_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_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_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_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_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_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_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_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_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_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_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_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Control%frac_grid 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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_run matched to target GFS_Control%imp_physics_gfdl in module GFS_typedefs -DEBUG: Requested variable flag_for_gfdl_microphysics_scheme in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_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_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_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_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_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_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_hydrostatic_heating_from_physics in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Interstitial(cdata%thrd_no)%phys_hydrostatic in module GFS_typedefs -DEBUG: Requested variable flag_for_hydrostatic_solver in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Control%hydrostatic in module GFS_typedefs -DEBUG: Requested variable flag_for_hydrostatic_solver_for_fast_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%hydrostatic in module CCPP_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_inline_cloud_fraction_calculation in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%do_qa in module CCPP_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_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_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_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_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_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_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_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_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_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_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_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_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_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_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_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_run 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_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_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_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_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_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_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_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_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 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_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_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_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_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_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_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_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_saturation_adjustment_for_microphysics_in_dynamics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_init matched to target CCPP_interstitial%do_sat_adj in module CCPP_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_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_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_run 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_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_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_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_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_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_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_tendency_of_air_temperature_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%out_dt in module CCPP_typedefs -DEBUG: Requested variable flag_for_the_last_step_of_k_split_remapping in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%last_step in module CCPP_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_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_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_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_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_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_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_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_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_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_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_for_zhao_carr_pdf_microphysics_scheme in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_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_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_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_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_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_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_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_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_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_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_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_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_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_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_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_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_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_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_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_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%icy 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_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_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_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_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_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_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_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_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%wet 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_gwdc SCHEME_gwdc SUBROUTINE_gwdc_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_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_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_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_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Control%lprnt in module GFS_typedefs -DEBUG: Requested variable flag_print in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_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_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_post_run matched to target GFS_Control%shcnvcw 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_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_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 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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_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 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_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_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_grid_box_with_subgrid_orography_higher_than_critical_height in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_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_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 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_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 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 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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_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_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_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_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_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_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_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_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_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_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_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_gwdps SCHEME_gwdps SUBROUTINE_gwdps_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run 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_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_constants_for_multi_gases_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_init matched to target CCPP_interstitial%rilist in module CCPP_typedefs -DEBUG: Requested variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%qvi in module CCPP_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Data(cdata%blk_no)%Statein%phil 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_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_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_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_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_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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%ntgl) in module GFS_typedefs -DEBUG: Requested variable graupel_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%ntgl) in module GFS_typedefs -DEBUG: Requested variable graupel_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%ntgl) in module GFS_typedefs -DEBUG: Requested variable graupel_mixing_ratio_updated_by_physics in MODULE_m_micro_post SCHEME_m_micro_post SUBROUTINE_m_micro_post_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntgl) in module GFS_typedefs -DEBUG: Requested variable graupel_mixing_ratio_updated_by_physics in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntgl) in module GFS_typedefs -DEBUG: Requested variable graupel_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%ntgl) 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_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_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_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_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_ozphys SCHEME_ozphys SUBROUTINE_ozphys_run 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_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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_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_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_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_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_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_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_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_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_gwdps SCHEME_gwdps SUBROUTINE_gwdps_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_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_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 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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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 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_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 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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Control%blksz2(cdata%blk_no) 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_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_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_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_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_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_m_micro SCHEME_m_micro SUBROUTINE_m_micro_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_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_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_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_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_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 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_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_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_dcyc2t3_post SCHEME_dcyc2t3_post SUBROUTINE_dcyc2t3_post_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 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_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_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_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_convective_transport_tracer 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)%clw(:,:,1) 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_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_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 ice_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%ntiw) in module GFS_typedefs -DEBUG: Requested variable ice_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%ntiw) in module GFS_typedefs -DEBUG: Requested variable ice_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%ntiw) in module GFS_typedefs -DEBUG: Requested variable ice_water_mixing_ratio_updated_by_physics in MODULE_m_micro_post SCHEME_m_micro_post SUBROUTINE_m_micro_post_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntiw) in module GFS_typedefs -DEBUG: Requested variable ice_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%ntiw) in module GFS_typedefs -DEBUG: Requested variable ice_water_mixing_ratio_updated_by_physics in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntiw) in module GFS_typedefs -DEBUG: Requested variable ice_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%ntiw) 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_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_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_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_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_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 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_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_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_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_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_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_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_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_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_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_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Control%ntcw 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_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_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_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 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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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 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_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_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_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_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_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_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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_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_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_post_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_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_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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_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_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_post_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 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 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_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_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_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 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_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_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_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 julian_day in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Control%julian in module GFS_typedefs -DEBUG: Requested variable kappa_dry_for_fast_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%akap in module CCPP_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_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_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_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_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_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_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_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_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_shoc SCHEME_shoc SUBROUTINE_shoc_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 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_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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_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_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_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_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_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_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_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_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_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_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_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_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_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_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_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_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_shoc SCHEME_shoc SUBROUTINE_shoc_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 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_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_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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_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_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_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_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_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_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_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_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 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_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_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 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 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 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_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 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_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_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 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_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_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_run 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_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_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_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_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_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target con_hvap 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_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_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_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_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_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_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_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 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 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_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 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_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 log_pressure_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%peln in module CCPP_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%raincprv 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)%Tbd%raincprv in module GFS_typedefs -DEBUG: Requested variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep in MODULE_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_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_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_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_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_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_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_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_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_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_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_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_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_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_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%rainncprv 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)%Tbd%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_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%graupelprv 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)%Tbd%graupelprv in module GFS_typedefs -DEBUG: Requested variable lwe_thickness_of_graupel_amount_on_dynamics_timestep in MODULE_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_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_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_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_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%iceprv 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)%Tbd%iceprv in module GFS_typedefs -DEBUG: Requested variable lwe_thickness_of_ice_amount_on_dynamics_timestep in MODULE_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_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_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_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_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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_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_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%snowprv 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)%Tbd%snowprv in module GFS_typedefs -DEBUG: Requested variable lwe_thickness_of_snow_amount_on_dynamics_timestep in MODULE_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_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 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 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_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 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 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_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_pre SCHEME_m_micro_pre SUBROUTINE_m_micro_pre_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_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_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_pre SCHEME_m_micro_pre SUBROUTINE_m_micro_pre_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 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_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_subgrid_orography in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_pre_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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 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_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_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 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 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_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_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_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 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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Control%pgcon_shal 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_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_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_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_init 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_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_h2ophys SCHEME_h2ophys SUBROUTINE_h2ophys_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_gwdps SCHEME_gwdps SUBROUTINE_gwdps_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Control%me in module GFS_typedefs -DEBUG: Requested variable mpi_rank_for_fast_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_init matched to target CCPP_interstitial%mpirank in module CCPP_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_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_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_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_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_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_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_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 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_for_fast_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_init matched to target CCPP_interstitial%mpiroot in module CCPP_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_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 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 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 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_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_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_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_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_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 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 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_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_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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%itc 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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_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_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_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_gases_for_multi_gases_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%ngas in module CCPP_typedefs -DEBUG: Requested variable number_of_gases_for_multi_gases_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_init matched to target CCPP_interstitial%ngas in module CCPP_typedefs -DEBUG: Requested variable number_of_ghost_zones in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%ng in module CCPP_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_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_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_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_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_statistical_measures_of_subgrid_orography in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_pre_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_total_tracers in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_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_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 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_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_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_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_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_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_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_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_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_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_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_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_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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_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_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_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_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_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_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_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_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_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_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_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_water_species in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_init matched to target CCPP_interstitial%nwat in module CCPP_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_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_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_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_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_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_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_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 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 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_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_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 omp_threads_for_fast_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%nthreads in module CCPP_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_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_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_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_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_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_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_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_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_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_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_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_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 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 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_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 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 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 pressure_thickness_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%delp in module CCPP_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_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 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 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_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_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_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Control%evfactl_deep in module GFS_typedefs -DEBUG: Requested variable rain_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%ntrw) in module GFS_typedefs -DEBUG: Requested variable rain_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%ntrw) in module GFS_typedefs -DEBUG: Requested variable rain_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%ntrw) in module GFS_typedefs -DEBUG: Requested variable rain_water_mixing_ratio_updated_by_physics in MODULE_m_micro_post SCHEME_m_micro_post SUBROUTINE_m_micro_post_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntrw) in module GFS_typedefs -DEBUG: Requested variable rain_water_mixing_ratio_updated_by_physics in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntrw) in module GFS_typedefs -DEBUG: Requested variable rain_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%ntrw) 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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_default_kind in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%zvir in module CCPP_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 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_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_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_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_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_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_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_concentration 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%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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_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 slope_of_subgrid_orography in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_pre_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 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_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_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_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_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_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_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_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%ntsw) in module GFS_typedefs -DEBUG: Requested variable snow_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%ntsw) in module GFS_typedefs -DEBUG: Requested variable snow_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%ntsw) in module GFS_typedefs -DEBUG: Requested variable snow_water_mixing_ratio_updated_by_physics in MODULE_m_micro_post SCHEME_m_micro_post SUBROUTINE_m_micro_post_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntsw) in module GFS_typedefs -DEBUG: Requested variable snow_water_mixing_ratio_updated_by_physics in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntsw) in module GFS_typedefs -DEBUG: Requested variable snow_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%ntsw) 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_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_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_temperature in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%stc 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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_vertical_dimension in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Control%lsoil 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_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_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_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 specific_heat_capacities_for_multi_gases_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_init matched to target CCPP_interstitial%cpilist in module CCPP_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target con_cp 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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target con_cliq 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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run 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_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_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_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_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_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_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 standard_deviation_of_subgrid_orography in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_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_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 starting_x_direction_index in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%is in module CCPP_typedefs -DEBUG: Requested variable starting_x_direction_index_domain in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%isd in module CCPP_typedefs -DEBUG: Requested variable starting_y_direction_index in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%js in module CCPP_typedefs -DEBUG: Requested variable starting_y_direction_index_domain in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%jsd in module CCPP_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 statistical_measures_of_subgrid_orography in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_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_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 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_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 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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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 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_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_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 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_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_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 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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_dcyc2t3_post SCHEME_dcyc2t3_post SUBROUTINE_dcyc2t3_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_geopotential_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%phis in module CCPP_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_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_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_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_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_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_dcyc2t3_post SCHEME_dcyc2t3_post SUBROUTINE_dcyc2t3_post_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_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 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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_upward_latent_heat_flux_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%dqsfcin_cpl in module GFS_typedefs -DEBUG: Requested variable surface_upward_latent_heat_flux_for_coupling_interstitial 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)%dqsfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_upward_latent_heat_flux_for_coupling_interstitial 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)%dqsfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_upward_latent_heat_flux_for_coupling_interstitial in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Interstitial(cdata%thrd_no)%dqsfc_cice 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_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_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_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_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_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_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_sensible_heat_flux_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%dtsfcin_cpl in module GFS_typedefs -DEBUG: Requested variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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)%dtsfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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)%dtsfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_upward_sensible_heat_flux_for_coupling_interstitial in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Interstitial(cdata%thrd_no)%dtsfc_cice 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 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_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_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 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_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_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 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_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_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 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_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_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%ulwsfcin_cpl in module GFS_typedefs -DEBUG: Requested variable surface_upwelling_longwave_flux_for_coupling_interstitial 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)%ulwsfc_cice 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_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_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_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_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_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_shortwave_flux in MODULE_dcyc2t3_post SCHEME_dcyc2t3_post SUBROUTINE_dcyc2t3_post_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_x_momentum_flux_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%dusfcin_cpl in module GFS_typedefs -DEBUG: Requested variable surface_x_momentum_flux_for_coupling_interstitial 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)%dusfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_x_momentum_flux_for_coupling_interstitial 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)%dusfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_x_momentum_flux_for_coupling_interstitial in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Interstitial(cdata%thrd_no)%dusfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_y_momentum_flux_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%dvsfcin_cpl in module GFS_typedefs -DEBUG: Requested variable surface_y_momentum_flux_for_coupling_interstitial 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)%dvsfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_y_momentum_flux_for_coupling_interstitial 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)%dvsfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_y_momentum_flux_for_coupling_interstitial in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Interstitial(cdata%thrd_no)%dvsfc_cice 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_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_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_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_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_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 tendency_of_air_temperature_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%dtdt in module CCPP_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_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)%Coupling%tconvtend in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Data(cdata%blk_no)%Tbd%htlw0 in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step in MODULE_rrtmg_lw_post SCHEME_rrtmg_lw_post SUBROUTINE_rrtmg_lw_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%htlw0 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)%Tbd%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)%Tbd%htlwc 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)%Tbd%htlwc in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Data(cdata%blk_no)%Tbd%htlwc in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step in MODULE_rrtmg_lw_post SCHEME_rrtmg_lw_post SUBROUTINE_rrtmg_lw_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%htlwc 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)%Tbd%htlwc 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)%Tbd%htlwc 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)%Tbd%htlwc in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_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)%Radtend%htrlw in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep 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_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)%Radtend%htrlw in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep 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_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_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_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_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_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_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_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_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_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_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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_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_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_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_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_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_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_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_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_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Data(cdata%blk_no)%Tbd%htsw0 in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step in MODULE_rrtmg_sw_post SCHEME_rrtmg_sw_post SUBROUTINE_rrtmg_sw_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%htsw0 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)%Tbd%htsw0 in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Data(cdata%blk_no)%Tbd%htswc 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)%Tbd%htswc in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step in MODULE_rrtmg_sw_post SCHEME_rrtmg_sw_post SUBROUTINE_rrtmg_sw_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%htswc 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)%Tbd%htswc 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)%Tbd%htswc 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)%Tbd%htswc in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_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)%Radtend%htrsw in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep 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_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)%Radtend%htrsw in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep 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_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_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_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_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_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_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_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_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_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_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_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_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdftra in module GFS_typedefs -DEBUG: Requested variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_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)%Coupling%qconvtend in module GFS_typedefs -DEBUG: Requested variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_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)%Coupling%uconvtend 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_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_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_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_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_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_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_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_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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 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_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_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_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_deep_convection_for_coupling_on_physics_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)%Coupling%vconvtend 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_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_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_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_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_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_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_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_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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 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_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_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_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 thickness_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%delz in module CCPP_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_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_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 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_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_x_stress_due_to_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%dugwd in module GFS_typedefs -DEBUG: Requested variable time_integral_of_x_stress_due_to_gravity_wave_drag in MODULE_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_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_integral_of_y_stress_due_to_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%dvgwd in module GFS_typedefs -DEBUG: Requested variable time_integral_of_y_stress_due_to_gravity_wave_drag in MODULE_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_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_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_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_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_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_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_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_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_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_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_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_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_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_post_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_post_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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_remapping_for_fast_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%mdt in module CCPP_typedefs -DEBUG: Requested variable top_layer_index_for_fast_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%kmp in module CCPP_typedefs -DEBUG: Requested variable top_layer_index_for_fast_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_init matched to target CCPP_interstitial%kmp in module CCPP_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_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_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_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_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_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 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 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_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_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_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 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_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_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_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 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_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 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_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 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_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 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_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 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 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_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 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 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_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_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_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_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_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_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_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 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 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_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_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_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 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_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_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_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_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_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_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 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_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_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 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_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_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_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_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_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_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_ozphys SCHEME_ozphys SUBROUTINE_ozphys_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_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_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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Control%levs in module GFS_typedefs -DEBUG: Requested variable vertical_dimension in MODULE_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_post_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_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_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_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_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_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_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_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_gwdps SCHEME_gwdps SUBROUTINE_gwdps_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_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_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_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_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_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 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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_for_fast_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%npz in module CCPP_typedefs -DEBUG: Requested variable vertical_dimension_for_thickness_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%npzdelz in module CCPP_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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_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_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_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_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_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_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_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 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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%vdftra in module GFS_typedefs -DEBUG: Requested variable virtual_temperature_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%pt in module CCPP_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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 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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%qv in module CCPP_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_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_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_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_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_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_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_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%xmu in module GFS_typedefs -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 162 schemes to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.mk, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -DEBUG: Generating suite and group caps for suite FV3_GFS_2017... -DEBUG: Generating suite and group caps for suite FV3_GFS_2017_stretched... -INFO: Generating static API ccpp_static_api.F90 in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 11 auto-generated caps to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.mk and /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ ./build_ccpp.sh cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk 'CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp' NO NO -MACHINE_ID=cheyenne.intel is valid. -Compilers set for cheyenne.intel. -Obtained ESMF_LIB=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib from /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -DNETCDF_DIR=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/ -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DOPENMP=ON -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 19.0.0.20190117 --- The CXX compiler identification is Intel 19.0.0.20190117 --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- The Fortran compiler identification is Intel 19.0.0.20190117 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 supports Fortran 90 --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 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 LibXml2: /usr/lib64/libxml2.so (found version "2.9.4") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.6") --- 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 SCHEMES from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_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: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O0 -g -fPIC -ftrapuv -traceback -qopenmp -qopenmp -O0 -g -fPIC -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O0 -g -fPIC -ftrapuv -traceback -qopenmp -qopenmp -O0 -g -fPIC -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields_idx.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O0 -g -fPIC -ftrapuv -traceback -qopenmp -qopenmp -O0 -g -fPIC -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_utils.c -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O0 -g -fPIC -ftrapuv -traceback -qopenmp -qopenmp -O0 -g -fPIC -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.c -[ 8%] Linking Fortran static library libccpp.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar qc libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O0 -g -fPIC -ftrapuv -traceback -qopenmp -qopenmp -O0 -g -fPIC -o CMakeFiles/test_fields.dir/test_fields.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_fields.c -[ 9%] Linking C executable test_fields -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -O0 -g -fPIC -ftrapuv -traceback -qopenmp -qopenmp -O0 -g -fPIC CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -[ 10%] Linking Fortran executable test_check -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC CMakeFiles/test_check.dir/test_check.f90.o -o test_check ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 11%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -[ 12%] Linking Fortran executable test_init_finalize -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 32 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o.provides.build -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -fpp: warning: keyword redefined: STATIC -[ 99%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 99%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -[100%] Linking Fortran static library libccppphys.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/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_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/mfscu.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/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.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 CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o -/usr/bin/ranlib libccppphys.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[2]: Nothing to be done for 'preinstall'. -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Debug" --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccpp.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config-debug.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_utils.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_errors.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_strings.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_suite.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_types.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_api.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccppphys.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config-debug.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_stochastics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_fast_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_stochastics_cap.mod -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_cplfields.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=Y # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_data.F90 -o CCPP_layer/CCPP_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=Y # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... - -Build CCPP layer ... - -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DOVERLOAD_R4 CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c FV3GFS_io.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_write_internal_state.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c post_gfs_stub.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fv3_config.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c time_utils.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c atmos_model.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fcst_grid_comp.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; \ -gmake nems DEBUG=Y \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL CCPP_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 07:37:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 07:37:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 07:37:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 07:37:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 07:37:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 07:37:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 07:37:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 07:37:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 07:37:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 07:37:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=ifort -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libccppdriver.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libstochastic_physics.a -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -L/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_19.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_19.exe -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_19 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y' NEMS_BUILDOPT=DEBUG=Y clean -Will copy modules.nems and NEMS.x as fv3_19 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -+ elapsed=258 -+ echo 'Elapsed time 258 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y finished' -Elapsed time 258 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.intel -+ BUILD_TARGET=cheyenne.intel -+ readonly MAKE_OPT= -+ MAKE_OPT= -+ readonly BUILD_NAME=fv3_1 -+ BUILD_NAME=fv3_1 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -cheyenne6 -+ echo 'Compiling into fv3_1.exe on cheyenne.intel' -Compiling into fv3_1.exe on cheyenne.intel -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake -+ [[ cheyenne.intel == cheyenne.* ]] -+ MAKE_THREADS=3 -+ MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ '' == *\C\C\P\P\=\Y* ]] -+ [[ '' == *\W\W\3\=\Y* ]] -+ [[ '' == *\D\E\B\U\G\=\Y* ]] -+ [[ '' == *\D\E\B\U\G\=\Y* ]] -+ [[ '' == *\R\E\P\R\O\=\Y* ]] -+ NEMS_BUILDOPT= -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_1 BUILD_ENV=cheyenne.intel FV3_MAKEOPT= NEMS_BUILDOPT= distclean -Will copy modules.nems and NEMS.x as fv3_1 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -cc -E four_to_grid_stochy.F > four_to_grid_stochy.f -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -GNUmakefile:16: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk: No such file or directory -Components in linker order: FV3 FMS -FV3: include -GNUmakefile:70: : component FV3 makefile fragment is missing -FMS: include -GNUmakefile:70: : component FMS makefile fragment is missing -gmake[1]: *** No rule to make target '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk'. -gmake[1]: Failed to remake makefile '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk'. -rm -f -f *.tmp.f90 *.lst *.o *.mod lm map -cd ENS_Cpl ; gmake clean -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_1 BUILD_ENV=cheyenne.intel FV3_MAKEOPT= NEMS_BUILDOPT= build -Will copy modules.nems and NEMS.x as fv3_1 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/modulefiles/cheyenne.intel/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_1" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_1 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/conf/configure.fv3.cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ -exec gmake all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_core.F90 -o ../drifters/drifters_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_input.F90 -o ../drifters/drifters_input.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_io.F90 -o ../drifters/drifters_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//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 -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//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 -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//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 -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_data.F90 -o ../mpp/mpp_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_efp.F90 -o ../mpp/mpp_efp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_pset.F90 -o ../mpp/mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_memutils.F90 -o ../mpp/mpp_memutils.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_type.F90 -o ../horiz_interp/horiz_interp_type.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/gradient.F90 -o ../mosaic/gradient.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_domains.F90 -o ../mpp/mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_comm.F90 -o ../drifters/drifters_comm.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../time_interp/time_interp_external.F90 -o ../time_interp/time_interp_external.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/topography.F90 -o ../topography/topography.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_output.F90 -o ../diag_manager/diag_output.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_util.F90 -o ../diag_manager/diag_util.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_table.F90 -o ../diag_manager/diag_table.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_manager.F90 -o ../diag_manager/diag_manager.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../exchange/xgrid.F90 -o ../exchange/xgrid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/coupler_types.F90 -o ../coupler/coupler_types.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Compiling into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_cplfields.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -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/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -a - physics/co2hc.o -a - physics/date_def.o -a - physics/dcyc2.o -a - physics/dcyc2.pre.rad.o -a - physics/efield.o -a - physics/get_prs.o -a - physics/gocart_tracer_config_stub.o -a - physics/gscond.o -a - physics/gscondp.o -a - physics/gwdc.o -a - physics/gwdps.o -a - physics/ugwp_driver_v0.o -a - physics/cires_orowam2017.o -a - physics/h2o_def.o -a - physics/h2oc.o -a - physics/h2ohdc.o -a - physics/h2ophys.o -a - physics/ideaca.o -a - physics/idea_co2.o -a - physics/idea_composition.o -a - physics/idea_dissipation.o -a - physics/idea_h2o.o -a - physics/idea_ion.o -a - physics/idea_o2_o3.o -a - physics/idea_phys.o -a - physics/idea_solar_heating.o -a - physics/idea_tracer.o -a - physics/iounitdef.o -a - physics/lrgsclr.o -a - physics/mersenne_twister.o -a - physics/mfpbl.o -a - physics/mfpblt.o -a - physics/mfpbltq.o -a - physics/mfscu.o -a - physics/mfscuq.o -a - physics/module_bfmicrophysics.o -a - physics/moninedmf.o -a - physics/moninedmf_hafs.o -a - physics/moninp.o -a - physics/moninp1.o -a - physics/moninq.o -a - physics/moninq1.o -a - physics/moninshoc.o -a - physics/mstadb.o -a - physics/mstadbtn.o -a - physics/mstadbtn2.o -a - physics/mstcnv.o -a - physics/namelist_soilveg.o -a - physics/ozne_def.o -a - physics/iccn_def.o -a - physics/aerclm_def.o -a - physics/ozphys.o -a - physics/ozphys_2015.o -a - physics/physparam.o -a - physics/precpd.o -a - physics/precpd_shoc.o -a - physics/precpdp.o -a - physics/progt2.o -a - physics/progtm_module.o -a - physics/rad_initialize.o -a - physics/radiation_aerosols.o -a - physics/radiation_astronomy.o -a - physics/radiation_clouds.o -a - physics/radiation_gases.o -a - physics/radiation_surface.o -a - physics/radlw_datatb.o -a - physics/radlw_main.o -a - physics/radlw_param.o -a - physics/radsw_datatb.o -a - physics/radsw_main.o -a - physics/radsw_param.o -a - physics/rascnvv2.o -a - physics/rayleigh_damp.o -a - physics/rayleigh_damp_mesopause.o -a - physics/samfaerosols.o -a - physics/samfdeepcnv.o -a - physics/samfshalcnv.o -a - physics/sascnv.o -a - physics/sascnvn.o -a - physics/satmedmfvdif.o -a - physics/satmedmfvdifq.o -a - physics/set_soilveg.o -a - physics/sfc_cice.o -a - physics/sfc_diag.o -a - physics/sfc_diff.o -a - physics/sfc_drv.o -a - physics/sfc_noahmp_drv.o -a - physics/sfc_nst.o -a - physics/sfc_ocean.o -a - physics/sfc_sice.o -a - physics/sflx.o -a - physics/shalcnv.o -a - physics/shalcv.o -a - physics/shalcv_1lyr.o -a - physics/shalcv_fixdp.o -a - physics/shalcv_opr.o -a - physics/tracer_const_h.o -a - physics/tridi2t3.o -a - physics/calpreciptype.o -a - physics/funcphys.o -a - physics/gcm_shoc.o -a - physics/get_prs_fv3.o -a - physics/h2ointerp.o -a - physics/module_nst_model.o -a - physics/module_nst_parameters.o -a - physics/module_nst_water_prop.o -a - physics/ozinterp.o -a - physics/module_wrf_utl.o -a - physics/noahmp_tables.o -a - physics/module_sf_noahmplsm.o -a - physics/module_sf_noahmp_glacier.o -a - physics/iccninterp.o -a - physics/aerinterp.o -a - physics/wam_f107_kp_mod.o -a - physics/aer_cloud.o -a - physics/cldmacro.o -a - physics/cldwat2m_micro.o -a - physics/gfs_phy_tracer_config.o -a - physics/machine.o -a - physics/num_parthds.o -a - physics/sfcsub.o -a - physics/wv_saturation.o -a - physics/GFDL_parse_tracers.o -a - physics/gcycle.o -a - physics/cires_ugwp_initialize.o -a - physics/cires_ugwp_module.o -a - physics/cires_ugwp_utils.o -a - physics/cires_ugwp_triggers.o -a - physics/cires_ugwp_solvers.o -a - physics/cires_vert_lsatdis.o -a - physics/cires_vert_orodis.o -a - physics/cires_vert_wmsdis.o -a - physics/gfdl_cloud_microphys.o -a - physics/micro_mg_utils.o -a - physics/micro_mg2_0.o -a - physics/micro_mg3_0.o -a - physics/m_micro_driver.o -a - physics/cs_conv.o -a - physics/GFS_debug.o -a - physics/module_mp_radar.o -a - physics/module_mp_thompson_gfs.o -a - physics/module_mp_wsm6_fv3.o -a - physics/physcons.o -a - physics/surface_perturbation.o -a - GFS_layer/GFS_abstraction_layer.o -a - GFS_layer/GFS_diagnostics.o -a - GFS_layer/GFS_driver.o -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c FV3GFS_io.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_write_internal_state.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c post_gfs_stub.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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_cmp.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_cmp.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fv3_config.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c time_utils.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c atmos_model.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fcst_grid_comp.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; \ -gmake nems \ - COMPONENTS="FMS FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:48:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:48:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:48:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:48:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:48:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:48:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:48:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:48:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:48:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 18:48:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=ifort -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libstochastic_physics.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_1.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_1.exe -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_1 BUILD_ENV=cheyenne.intel FV3_MAKEOPT= NEMS_BUILDOPT= clean -Will copy modules.nems and NEMS.x as fv3_1 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -+ elapsed=849 -+ echo 'Elapsed time 849 seconds. Compiling finished' -Elapsed time 849 seconds. Compiling finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.intel -+ BUILD_TARGET=cheyenne.intel -+ readonly 'MAKE_OPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' -+ readonly BUILD_NAME=fv3_20 -+ BUILD_NAME=fv3_20 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -cheyenne6 -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp into fv3_20.exe on cheyenne.intel' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp into fv3_20.exe on cheyenne.intel -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake -+ [[ cheyenne.intel == cheyenne.* ]] -+ MAKE_THREADS=3 -+ MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\W\W\3\=\Y* ]] -+ [[ 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 == *\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* ]] -+ NEMS_BUILDOPT= -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_20 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' NEMS_BUILDOPT= distclean -Will copy modules.nems and NEMS.x as fv3_20 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include" ; \ -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp --clean -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: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_20 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' NEMS_BUILDOPT= build -Will copy modules.nems and NEMS.x as fv3_20 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/modulefiles/cheyenne.intel/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_20" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_20 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/conf/configure.fv3.cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ -exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/threadloc.c -o ../mpp/threadloc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp_external.F90 -o ../time_interp/time_interp_external.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh cheyenne.intel "$PATH_CCPP" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk \ - "CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"" NO NO ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/include ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -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 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 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 slc of variable volume_fraction_of_unfrozen_soil_moisture 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 phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top 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 sec of variable seconds_elapsed_since_model_initialization 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 kbot of variable vertical_index_at_cloud_base 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 stc of variable soil_temperature 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 xlaixy of variable leaf_area_index 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 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 phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back 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 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 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 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 v10m of variable y_wind_at_10m 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 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 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 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 nmtvr of variable number_of_statistical_measures_of_subgrid_orography 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 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 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 ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial 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 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 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 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 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 levs of variable vertical_dimension 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 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 w_0 of variable coefficient_w_0 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 pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter 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 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 phy_myj_chkqlm of variable surface_layer_evaporation_switch 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 sdec of variable sine_of_solar_declination_angle 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 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 dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep 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 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 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 lgocart of variable flag_gocart 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 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 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 sinlat of variable sine_of_latitude 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 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 do_sfcperts of variable flag_for_stochastic_surface_perturbations 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 tsfc_ice of variable surface_skin_temperature_over_ice_interstitial 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 debug of variable flag_debug 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 u1 of variable x_wind_at_lowest_model_layer_for_diag 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 do_myjsfc of variable do_myjsfc 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 gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics 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 slopetype of variable surface_slope_classification 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 levh2o of variable vertical_dimension_of_h2o_forcing_data 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 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 save_q of variable tracer_concentration_save 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 cf_upi of variable convective_cloud_fraction_for_microphysics 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial 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 dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL 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 tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave 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 forcet of variable temperature_tendency_due_to_dynamics 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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 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 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 ntchmdiag of variable number_of_chemical_tracers_for_diagnostics 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 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 dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column 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 islmsk_cice of variable sea_land_ice_mask_cice 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 pgr of variable surface_air_pressure 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 nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling 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 nscav of variable number_of_tracers_scavenged 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 zorl_ice of variable surface_roughness_length_over_ice_interstitial 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 aero_in of variable flag_for_aerosol_input_MG 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 avg_max_length of variable time_interval_for_maximum_hourly_fields 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 kind_LOGICAL of variable kind_LOGICAL 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial 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 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 mdt of variable time_step_for_remapping_for_fast_physics 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 sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model 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 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 runoff of variable total_runoff 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 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 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 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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial 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 nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation 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 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 qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio 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 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 oceanfrac of variable sea_area_fraction 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 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 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 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 ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land 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 phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back 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 con_t0c of variable temperature_at_zero_celsius 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 dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling 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 shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term 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 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 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 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 mom4ice of variable flag_for_mom4_coupling 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 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 tsfcl of variable surface_skin_temperature_over_land 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ozphys -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 ozphys_2015 -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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme noahmpdrv -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 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 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_noahmp_pre -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 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 mp_thompson_post -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 gwdps_post -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 lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme mynnrad_post -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 lsm_noah -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme dcyc2t3_post -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -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 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_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_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_water_to_rain -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 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 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_aerosol_input_MG -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_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_shoc_after_convection -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 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 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 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 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_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_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 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 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 162 schemes to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.mk, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 12 auto-generated caps to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.mk and /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ ./build_ccpp.sh cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk 'CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp' NO NO -MACHINE_ID=cheyenne.intel is valid. -Compilers set for cheyenne.intel. -Obtained ESMF_LIB=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib from /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -DNETCDF_DIR=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/ -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DOPENMP=ON -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 19.0.0.20190117 --- The CXX compiler identification is Intel 19.0.0.20190117 --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- The Fortran compiler identification is Intel 19.0.0.20190117 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 supports Fortran 90 --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 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 LibXml2: /usr/lib64/libxml2.so (found version "2.9.4") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.6") --- 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 SCHEMES from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_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: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields_idx.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_utils.c -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.c -[ 8%] Linking Fortran static library libccpp.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar qc libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/test_fields.dir/test_fields.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_fields.c -[ 9%] Linking C executable test_fields -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -[ 10%] Linking Fortran executable test_check -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_check.dir/test_check.f90.o -o test_check ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 11%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -[ 12%] Linking Fortran executable test_init_finalize -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX-I -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_noahmp_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_noahmp_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_noahmp_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_noahmp_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_noahmp_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_noahmp_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_noahmp_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_noahmp_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_noahmp_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_noahmp_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o.provides.build -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_noahmp_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_noahmp_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/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_ocean.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 99%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -[100%] Linking Fortran static library libccppphys.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/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_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/mfscu.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/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o -/usr/bin/ranlib libccppphys.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[2]: Nothing to be done for 'preinstall'. -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Release" --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccpp.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config-release.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_utils.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_errors.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_strings.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_suite.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_types.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_api.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccppphys.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config-release.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_noahmp_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_noahmp_fast_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_noahmp_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_noahmp_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_noahmp_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_noahmp_stochastics_cap.mod -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_cplfields.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=N # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_data.F90 -o CCPP_layer/CCPP_data.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=N # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... - -Build CCPP layer ... - -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c FV3GFS_io.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_write_internal_state.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c post_gfs_stub.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fv3_config.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c time_utils.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c atmos_model.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fcst_grid_comp.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; \ -gmake nems \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL CCPP_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 08:07:06 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 08:07:06 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 08:07:06 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 08:07:06 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 08:07:06 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 08:07:06 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 08:07:06 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 08:07:06 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 08:07:06 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 08:07:06 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=ifort -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libccppdriver.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libstochastic_physics.a -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -L/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_20.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_20.exe -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_20 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' NEMS_BUILDOPT= clean -Will copy modules.nems and NEMS.x as fv3_20 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -+ elapsed=1137 -+ echo 'Elapsed time 1137 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp finished' -Elapsed time 1137 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.intel -+ BUILD_TARGET=cheyenne.intel -+ readonly 'MAKE_OPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf' -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf' -+ readonly BUILD_NAME=fv3_21 -+ BUILD_NAME=fv3_21 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -cheyenne6 -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf into fv3_21.exe on cheyenne.intel' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf into fv3_21.exe on cheyenne.intel -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake -+ [[ cheyenne.intel == cheyenne.* ]] -+ MAKE_THREADS=3 -+ MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\W\W\3\=\Y* ]] -+ [[ 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 == *\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* ]] -+ NEMS_BUILDOPT= -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_21 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf' NEMS_BUILDOPT= distclean -Will copy modules.nems and NEMS.x as fv3_21 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include" ; \ -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf --clean -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: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_21 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf' NEMS_BUILDOPT= build -Will copy modules.nems and NEMS.x as fv3_21 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/modulefiles/cheyenne.intel/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_21" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_21 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/conf/configure.fv3.cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ -exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/threadloc.c -o ../mpp/threadloc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh cheyenne.intel "$PATH_CCPP" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk \ - "CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"" NO NO ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/include ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf -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 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 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 slc of variable volume_fraction_of_unfrozen_soil_moisture 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 phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top 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 sec of variable seconds_elapsed_since_model_initialization 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 kbot of variable vertical_index_at_cloud_base 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 stc of variable soil_temperature 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 xlaixy of variable leaf_area_index 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 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 phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back 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 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 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 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 v10m of variable y_wind_at_10m 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 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 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 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 nmtvr of variable number_of_statistical_measures_of_subgrid_orography 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 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 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 ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial 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 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 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 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 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 levs of variable vertical_dimension 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 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 w_0 of variable coefficient_w_0 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 pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter 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 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 phy_myj_chkqlm of variable surface_layer_evaporation_switch 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 sdec of variable sine_of_solar_declination_angle 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 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 dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep 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 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 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 lgocart of variable flag_gocart 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 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 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 sinlat of variable sine_of_latitude 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 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 do_sfcperts of variable flag_for_stochastic_surface_perturbations 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 tsfc_ice of variable surface_skin_temperature_over_ice_interstitial 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 debug of variable flag_debug 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 u1 of variable x_wind_at_lowest_model_layer_for_diag 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 do_myjsfc of variable do_myjsfc 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 gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics 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 slopetype of variable surface_slope_classification 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 levh2o of variable vertical_dimension_of_h2o_forcing_data 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 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 save_q of variable tracer_concentration_save 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 cf_upi of variable convective_cloud_fraction_for_microphysics 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial 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 dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL 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 tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave 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 forcet of variable temperature_tendency_due_to_dynamics 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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 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 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 ntchmdiag of variable number_of_chemical_tracers_for_diagnostics 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 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 dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column 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 islmsk_cice of variable sea_land_ice_mask_cice 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 pgr of variable surface_air_pressure 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 nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling 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 nscav of variable number_of_tracers_scavenged 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 zorl_ice of variable surface_roughness_length_over_ice_interstitial 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 aero_in of variable flag_for_aerosol_input_MG 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 avg_max_length of variable time_interval_for_maximum_hourly_fields 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 kind_LOGICAL of variable kind_LOGICAL 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial 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 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 mdt of variable time_step_for_remapping_for_fast_physics 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 sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model 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 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 runoff of variable total_runoff 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 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 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 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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial 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 nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation 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 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 qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio 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 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 oceanfrac of variable sea_area_fraction 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 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 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 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 ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land 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 phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back 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 con_t0c of variable temperature_at_zero_celsius 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 dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling 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 shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term 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 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 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 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 mom4ice of variable flag_for_mom4_coupling 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 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 tsfcl of variable surface_skin_temperature_over_land 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ozphys -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 ozphys_2015 -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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme noahmpdrv -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 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 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_noahmp_pre -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 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 mp_thompson_post -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 gwdps_post -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 lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme mynnrad_post -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 lsm_noah -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme dcyc2t3_post -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -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 cloud_area_fraction -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 conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep -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 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 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 explicit_rainfall_rate_from_previous_timestep -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_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_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -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 graupel_precipitation_rate_from_previous_timestep -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_precipitation_rate_from_previous_timestep -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 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 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 namelist_filename_for_internal_file_reads -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_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_precipitation_rate_from_previous_timestep -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_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 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 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 162 schemes to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.mk, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 15 auto-generated caps to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.mk and /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ ./build_ccpp.sh cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk 'CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp' NO NO -MACHINE_ID=cheyenne.intel is valid. -Compilers set for cheyenne.intel. -Obtained ESMF_LIB=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib from /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -DNETCDF_DIR=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/ -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DOPENMP=ON -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 19.0.0.20190117 --- The CXX compiler identification is Intel 19.0.0.20190117 --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- The Fortran compiler identification is Intel 19.0.0.20190117 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 supports Fortran 90 --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 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 LibXml2: /usr/lib64/libxml2.so (found version "2.9.4") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.6") --- 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 SCHEMES from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_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: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 6%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields_idx.c -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_utils.c -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.c -[ 7%] Linking Fortran static library libccpp.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar qc libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 7%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/test_fields.dir/test_fields.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_fields.c -[ 8%] Linking C executable test_fields -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -[ 9%] Linking Fortran executable test_check -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_check.dir/test_check.f90.o -o test_check ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -[ 10%] Linking Fortran executable test_init_finalize -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX-I -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmgshoc_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmgshoc_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmgshoc_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmgshoc_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmgshoc_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmgshoc_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmgshoc_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmgshoc_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmg_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmg_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmg_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmg_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmg_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmg_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmg_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmg_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_satmedmf_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_satmedmf_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_satmedmf_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_satmedmf_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_satmedmf_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_satmedmf_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_satmedmf_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_satmedmf_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmg_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmg_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_cap.F90.o.provides.build -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmgshoc_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmgshoc_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_satmedmf_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_satmedmf_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_cap.F90.o.provides.build -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -[100%] Linking Fortran static library libccppphys.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/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_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/mfscu.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/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o -/usr/bin/ranlib libccppphys.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[2]: Nothing to be done for 'preinstall'. -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Release" --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccpp.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config-release.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_utils.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_errors.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_strings.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_suite.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_types.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_api.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccppphys.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config-release.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmgshoc_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmgshoc_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmgshoc_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmgshoc_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmgshoc_stochastics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmg_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmg_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmg_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmg_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmg_stochastics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_satmedmf_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_satmedmf_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_satmedmf_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_satmedmf_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_satmedmf_stochastics_cap.mod -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_cplfields.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=N # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_data.F90 -o CCPP_layer/CCPP_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=N # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... - -Build CCPP layer ... - -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c FV3GFS_io.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_write_internal_state.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c post_gfs_stub.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fv3_config.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c time_utils.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c atmos_model.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fcst_grid_comp.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; \ -gmake nems \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL CCPP_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 08:35:03 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 08:35:03 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 08:35:03 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 08:35:03 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 08:35:03 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 08:35:03 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 08:35:03 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 08:35:03 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 08:35:03 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 08:35:03 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=ifort -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libccppdriver.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libstochastic_physics.a -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -L/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_21.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_21.exe -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_21 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf' NEMS_BUILDOPT= clean -Will copy modules.nems and NEMS.x as fv3_21 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -+ elapsed=1248 -+ echo 'Elapsed time 1248 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf finished' -Elapsed time 1248 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.intel -+ BUILD_TARGET=cheyenne.intel -+ readonly 'MAKE_OPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y' -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y' -+ readonly BUILD_NAME=fv3_22 -+ BUILD_NAME=fv3_22 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -cheyenne6 -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y into fv3_22.exe on cheyenne.intel' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y into fv3_22.exe on cheyenne.intel -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake -+ [[ cheyenne.intel == cheyenne.* ]] -+ MAKE_THREADS=3 -+ MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\W\W\3\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ NEMS_BUILDOPT= -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_22 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y' NEMS_BUILDOPT= distclean -Will copy modules.nems and NEMS.x as fv3_22 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include" ; \ -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 --clean -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: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_22 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y' NEMS_BUILDOPT= build -Will copy modules.nems and NEMS.x as fv3_22 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/modulefiles/cheyenne.intel/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_22" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_22 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/conf/configure.fv3.cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ -exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/threadloc.c -o ../mpp/threadloc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh cheyenne.intel "$PATH_CCPP" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk \ - "CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"" NO NO ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/include ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 -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_v15.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_v15plus.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 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 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 slc of variable volume_fraction_of_unfrozen_soil_moisture 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 phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top 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 sec of variable seconds_elapsed_since_model_initialization 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 kbot of variable vertical_index_at_cloud_base 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 stc of variable soil_temperature 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 xlaixy of variable leaf_area_index 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 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 phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back 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 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 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 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 v10m of variable y_wind_at_10m 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 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 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 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 nmtvr of variable number_of_statistical_measures_of_subgrid_orography 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 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 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 ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial 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 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 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 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 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 levs of variable vertical_dimension 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 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 w_0 of variable coefficient_w_0 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 pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter 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 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 phy_myj_chkqlm of variable surface_layer_evaporation_switch 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 sdec of variable sine_of_solar_declination_angle 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 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 dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep 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 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 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 lgocart of variable flag_gocart 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 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 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 sinlat of variable sine_of_latitude 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 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 do_sfcperts of variable flag_for_stochastic_surface_perturbations 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 tsfc_ice of variable surface_skin_temperature_over_ice_interstitial 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 debug of variable flag_debug 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 u1 of variable x_wind_at_lowest_model_layer_for_diag 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 do_myjsfc of variable do_myjsfc 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 gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics 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 slopetype of variable surface_slope_classification 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 levh2o of variable vertical_dimension_of_h2o_forcing_data 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 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 save_q of variable tracer_concentration_save 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 cf_upi of variable convective_cloud_fraction_for_microphysics 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial 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 dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL 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 tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave 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 forcet of variable temperature_tendency_due_to_dynamics 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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 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 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 ntchmdiag of variable number_of_chemical_tracers_for_diagnostics 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 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 dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column 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 islmsk_cice of variable sea_land_ice_mask_cice 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 pgr of variable surface_air_pressure 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 nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling 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 nscav of variable number_of_tracers_scavenged 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 zorl_ice of variable surface_roughness_length_over_ice_interstitial 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 aero_in of variable flag_for_aerosol_input_MG 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 avg_max_length of variable time_interval_for_maximum_hourly_fields 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 kind_LOGICAL of variable kind_LOGICAL 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial 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 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 mdt of variable time_step_for_remapping_for_fast_physics 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 sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model 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 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 runoff of variable total_runoff 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 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 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 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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial 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 nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation 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 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 qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio 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 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 oceanfrac of variable sea_area_fraction 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 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 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 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 ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land 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 phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back 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 con_t0c of variable temperature_at_zero_celsius 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 dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling 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 shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term 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 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 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 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 mom4ice of variable flag_for_mom4_coupling 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 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 tsfcl of variable surface_skin_temperature_over_land 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ozphys -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 ozphys_2015 -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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme noahmpdrv -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 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 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_noahmp_pre -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 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 mp_thompson_post -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 gwdps_post -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 lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme mynnrad_post -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 lsm_noah -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme dcyc2t3_post -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -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 cloud_area_fraction -INFO: filtering out variable cloud_condensed_water_conversion_threshold -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_water_to_rain -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep -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 do_myjsfc -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable explicit_rainfall_rate_from_previous_timestep -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_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_shoc_after_convection -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 graupel_precipitation_rate_from_previous_timestep -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_precipitation_rate_from_previous_timestep -INFO: filtering out variable ice_supersaturation_threshold -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_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable liquid_water_density -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable number_of_snow_layers -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_precipitation_rate_from_previous_timestep -INFO: filtering out variable snow_temperature -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -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 turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 162 schemes to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.mk, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 29 auto-generated caps to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.mk and /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ ./build_ccpp.sh cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk 'CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp' NO NO -MACHINE_ID=cheyenne.intel is valid. -Compilers set for cheyenne.intel. -Obtained ESMF_LIB=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib from /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -DNETCDF_DIR=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/ -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DOPENMP=ON -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 19.0.0.20190117 --- The CXX compiler identification is Intel 19.0.0.20190117 --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- The Fortran compiler identification is Intel 19.0.0.20190117 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 supports Fortran 90 --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 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 LibXml2: /usr/lib64/libxml2.so (found version "2.9.4") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.6") --- 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 SCHEMES from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15_fast_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15_stochastics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_stochastics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_CPT_v0_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_CPT_v0_fast_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_CPT_v0_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_CPT_v0_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_CPT_v0_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_CPT_v0_stochastics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GSD_v0_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GSD_v0_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GSD_v0_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GSD_v0_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GSD_v0_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: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.c -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields_idx.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_utils.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.c -[ 7%] Linking Fortran static library libccpp.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar qc libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 7%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -o CMakeFiles/test_fields.dir/test_fields.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_fields.c -[ 8%] Linking C executable test_fields -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -[ 9%] Linking Fortran executable test_check -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_check.dir/test_check.f90.o -o test_check ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -[ 10%] Linking Fortran executable test_init_finalize -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX-I -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 32 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_CPT_v0_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_cpt_v0_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_cpt_v0_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_CPT_v0_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_cpt_v0_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_cpt_v0_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_CPT_v0_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_cpt_v0_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_cpt_v0_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_CPT_v0_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_cpt_v0_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_cpt_v0_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_CPT_v0_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_cpt_v0_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_cpt_v0_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GSD_v0_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gsd_v0_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gsd_v0_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GSD_v0_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gsd_v0_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gsd_v0_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GSD_v0_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gsd_v0_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gsd_v0_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GSD_v0_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gsd_v0_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gsd_v0_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_CPT_v0_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_cpt_v0_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_cpt_v0_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_cap.F90.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_cap.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_cap.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GSD_v0_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gsd_v0_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gsd_v0_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_cap.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -[100%] Linking Fortran static library libccppphys.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/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_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/mfscu.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/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o -/usr/bin/ranlib libccppphys.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[2]: Nothing to be done for 'preinstall'. -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Release" --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccpp.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config-release.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_utils.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_errors.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_strings.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_suite.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_types.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_api.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccppphys.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config-release.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15_fast_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15_stochastics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_fast_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_stochastics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_cpt_v0_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_cpt_v0_fast_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_cpt_v0_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_cpt_v0_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_cpt_v0_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_cpt_v0_stochastics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gsd_v0_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gsd_v0_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gsd_v0_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gsd_v0_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gsd_v0_stochastics_cap.mod -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_cplfields.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=Y # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_data.F90 -o CCPP_layer/CCPP_data.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=Y # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... - -Build CCPP layer ... - -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DOVERLOAD_R4 CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c FV3GFS_io.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_write_internal_state.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c post_gfs_stub.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fv3_config.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c time_utils.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c atmos_model.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fcst_grid_comp.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; \ -gmake nems \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL CCPP_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 09:04:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 09:04:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 09:04:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 09:04:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 09:04:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 09:04:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 09:04:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 09:04:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 09:04:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 09:04:14 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=ifort -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libccppdriver.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libstochastic_physics.a -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -L/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_22.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_22.exe -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_22 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y' NEMS_BUILDOPT= clean -Will copy modules.nems and NEMS.x as fv3_22 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -+ elapsed=1333 -+ echo 'Elapsed time 1333 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y finished' -Elapsed time 1333 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y finished -+ SECONDS=0 -+ [[ 3 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ readonly APP=standaloneFV3 -+ APP=standaloneFV3 -+ readonly BUILD_NAME=fv3_2 -+ BUILD_NAME=fv3_2 -+ hostname -cheyenne6 -+ echo 'Compiling app standaloneFV3 into fv3_2.exe' -Compiling app standaloneFV3 into fv3_2.exe -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/.. -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS/exe/NEMS.x -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS/src/conf/modules.nems -+ set +e -+ ./NEMS/NEMSAppBuilder app=standaloneFV3 -ls: cannot access '../conf/component_*.mk': No such file or directory -NEMSAppBuilder: make app=standaloneFV3 distclean -Convert /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/standaloneFV3.appBuilder -...into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/standaloneFV3.appBuilder.mk -Include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/standaloneFV3.appBuilder.mk -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec make -f makefile.temp.clean clean -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec make \ - -k cleanall FMS_DIR=/dev/null -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; make "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test_results.mk -NEMSAppBuilder: make app=standaloneFV3 build -Convert /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/standaloneFV3.appBuilder -...into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/standaloneFV3.appBuilder.mk -Include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/standaloneFV3.appBuilder.mk -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/conf/configure.fv3.cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/modulefiles/cheyenne.intel/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk: No such file or directory -make -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" TEST -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ -exec make all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../constants/constants.F90 -o ../constants/constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_data.F90 -o ../mpp/mpp_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_memutils.F90 -o ../mpp/mpp_memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_efp.F90 -o ../mpp/mpp_efp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_pset.F90 -o ../mpp/mpp_pset.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_domains.F90 -o ../mpp/mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_io.F90 -o ../mpp/mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../fms/fms_io.F90 -o ../fms/fms_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_type.F90 -o ../horiz_interp/horiz_interp_type.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../block_control/block_control.F90 -o ../block_control/block_control.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_output.F90 -o ../diag_manager/diag_output.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_util.F90 -o ../diag_manager/diag_util.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_table.F90 -o ../diag_manager/diag_table.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_manager.F90 -o ../diag_manager/diag_manager.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../time_interp/time_interp_external.F90 -o ../time_interp/time_interp_external.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../data_override/data_override.F90 -o ../data_override/data_override.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/coupler_types.F90 -o ../coupler/coupler_types.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_input.F90 -o ../drifters/drifters_input.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_core.F90 -o ../drifters/drifters_core.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_comm.F90 -o ../drifters/drifters_comm.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_io.F90 -o ../drifters/drifters_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/gradient.F90 -o ../mosaic/gradient.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../station_data/station_data.F90 -o ../station_data/station_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/topography.F90 -o ../topography/topography.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//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 -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//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 -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//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 -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//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 -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL"/. -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Compiling into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; \ - exec make COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Building dependencies ... -make -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_cplfields.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -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/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -a - physics/co2hc.o -a - physics/date_def.o -a - physics/dcyc2.o -a - physics/dcyc2.pre.rad.o -a - physics/efield.o -a - physics/get_prs.o -a - physics/gocart_tracer_config_stub.o -a - physics/gscond.o -a - physics/gscondp.o -a - physics/gwdc.o -a - physics/gwdps.o -a - physics/ugwp_driver_v0.o -a - physics/cires_orowam2017.o -a - physics/h2o_def.o -a - physics/h2oc.o -a - physics/h2ohdc.o -a - physics/h2ophys.o -a - physics/ideaca.o -a - physics/idea_co2.o -a - physics/idea_composition.o -a - physics/idea_dissipation.o -a - physics/idea_h2o.o -a - physics/idea_ion.o -a - physics/idea_o2_o3.o -a - physics/idea_phys.o -a - physics/idea_solar_heating.o -a - physics/idea_tracer.o -a - physics/iounitdef.o -a - physics/lrgsclr.o -a - physics/mersenne_twister.o -a - physics/mfpbl.o -a - physics/mfpblt.o -a - physics/mfpbltq.o -a - physics/mfscu.o -a - physics/mfscuq.o -a - physics/module_bfmicrophysics.o -a - physics/moninedmf.o -a - physics/moninedmf_hafs.o -a - physics/moninp.o -a - physics/moninp1.o -a - physics/moninq.o -a - physics/moninq1.o -a - physics/moninshoc.o -a - physics/mstadb.o -a - physics/mstadbtn.o -a - physics/mstadbtn2.o -a - physics/mstcnv.o -a - physics/namelist_soilveg.o -a - physics/ozne_def.o -a - physics/iccn_def.o -a - physics/aerclm_def.o -a - physics/ozphys.o -a - physics/ozphys_2015.o -a - physics/physparam.o -a - physics/precpd.o -a - physics/precpd_shoc.o -a - physics/precpdp.o -a - physics/progt2.o -a - physics/progtm_module.o -a - physics/rad_initialize.o -a - physics/radiation_aerosols.o -a - physics/radiation_astronomy.o -a - physics/radiation_clouds.o -a - physics/radiation_gases.o -a - physics/radiation_surface.o -a - physics/radlw_datatb.o -a - physics/radlw_main.o -a - physics/radlw_param.o -a - physics/radsw_datatb.o -a - physics/radsw_main.o -a - physics/radsw_param.o -a - physics/rascnvv2.o -a - physics/rayleigh_damp.o -a - physics/rayleigh_damp_mesopause.o -a - physics/samfaerosols.o -a - physics/samfdeepcnv.o -a - physics/samfshalcnv.o -a - physics/sascnv.o -a - physics/sascnvn.o -a - physics/satmedmfvdif.o -a - physics/satmedmfvdifq.o -a - physics/set_soilveg.o -a - physics/sfc_cice.o -a - physics/sfc_diag.o -a - physics/sfc_diff.o -a - physics/sfc_drv.o -a - physics/sfc_noahmp_drv.o -a - physics/sfc_nst.o -a - physics/sfc_ocean.o -a - physics/sfc_sice.o -a - physics/sflx.o -a - physics/shalcnv.o -a - physics/shalcv.o -a - physics/shalcv_1lyr.o -a - physics/shalcv_fixdp.o -a - physics/shalcv_opr.o -a - physics/tracer_const_h.o -a - physics/tridi2t3.o -a - physics/calpreciptype.o -a - physics/funcphys.o -a - physics/gcm_shoc.o -a - physics/get_prs_fv3.o -a - physics/h2ointerp.o -a - physics/module_nst_model.o -a - physics/module_nst_parameters.o -a - physics/module_nst_water_prop.o -a - physics/ozinterp.o -a - physics/module_wrf_utl.o -a - physics/noahmp_tables.o -a - physics/module_sf_noahmplsm.o -a - physics/module_sf_noahmp_glacier.o -a - physics/iccninterp.o -a - physics/aerinterp.o -a - physics/wam_f107_kp_mod.o -a - physics/aer_cloud.o -a - physics/cldmacro.o -a - physics/cldwat2m_micro.o -a - physics/gfs_phy_tracer_config.o -a - physics/machine.o -a - physics/num_parthds.o -a - physics/sfcsub.o -a - physics/wv_saturation.o -a - physics/GFDL_parse_tracers.o -a - physics/gcycle.o -a - physics/cires_ugwp_initialize.o -a - physics/cires_ugwp_module.o -a - physics/cires_ugwp_utils.o -a - physics/cires_ugwp_triggers.o -a - physics/cires_ugwp_solvers.o -a - physics/cires_vert_lsatdis.o -a - physics/cires_vert_orodis.o -a - physics/cires_vert_wmsdis.o -a - physics/gfdl_cloud_microphys.o -a - physics/micro_mg_utils.o -a - physics/micro_mg2_0.o -a - physics/micro_mg3_0.o -a - physics/m_micro_driver.o -a - physics/cs_conv.o -a - physics/GFS_debug.o -a - physics/module_mp_radar.o -a - physics/module_mp_thompson_gfs.o -a - physics/module_mp_wsm6_fv3.o -a - physics/physcons.o -a - physics/surface_perturbation.o -a - GFS_layer/GFS_abstraction_layer.o -a - GFS_layer/GFS_diagnostics.o -a - GFS_layer/GFS_driver.o -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c FV3GFS_io.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_write_internal_state.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c post_gfs_stub.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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_cmp.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_cmp.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 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fv3_config.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c atmos_model.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fcst_grid_comp.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c time_utils.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -make esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL" complete! - -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; \ -make nems \ - COMPONENTS="FMS FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && make stub -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 20:29:34 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 20:29:34 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 20:29:34 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 20:29:34 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 20:29:34 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 20:29:34 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 20:29:34 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 20:29:34 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 20:29:34 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 20:29:34 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=ifort -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libstochastic_physics.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x is created. -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -+ RC=0 -+ set -e -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/.. -+ [[ 0 -ne 0 ]] -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../tests/fv3_2.exe -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../tests/modules.fv3_2 -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS/src -+ gmake clean -Components in linker order: -rm -f -f *.tmp.f90 *.lst *.o *.mod lm map -cd ENS_Cpl ; gmake clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ gmake cleanall -Cleaning ... - -(cd gfsphysics && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -+ rm -rf FV3_INSTALL -+ rm -rf nems_dir -+ elapsed=1212 -+ echo 'Elapsed time 1212 seconds. Compiling app standaloneFV3 finished' -Elapsed time 1212 seconds. Compiling app standaloneFV3 finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.intel -+ BUILD_TARGET=cheyenne.intel -+ readonly MAKE_OPT=32BIT=Y -+ MAKE_OPT=32BIT=Y -+ readonly BUILD_NAME=fv3_3 -+ BUILD_NAME=fv3_3 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -cheyenne6 -+ echo 'Compiling 32BIT=Y into fv3_3.exe on cheyenne.intel' -Compiling 32BIT=Y into fv3_3.exe on cheyenne.intel -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake -+ [[ cheyenne.intel == cheyenne.* ]] -+ MAKE_THREADS=3 -+ MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ [[ 32BIT=Y == *\W\W\3\=\Y* ]] -+ [[ 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ NEMS_BUILDOPT= -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_3 BUILD_ENV=cheyenne.intel FV3_MAKEOPT=32BIT=Y NEMS_BUILDOPT= distclean -Will copy modules.nems and NEMS.x as fv3_3 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake 32BIT=Y -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_3 BUILD_ENV=cheyenne.intel FV3_MAKEOPT=32BIT=Y NEMS_BUILDOPT= build -Will copy modules.nems and NEMS.x as fv3_3 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/modulefiles/cheyenne.intel/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_3" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_3 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/conf/configure.fv3.cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ -exec gmake 32BIT=Y all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/drifters_io.F90 -o ../drifters/drifters_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/drifters_core.F90 -o ../drifters/drifters_core.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/drifters_input.F90 -o ../drifters/drifters_input.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/quicksort.F90 -o ../drifters/quicksort.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//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 -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//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 -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//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 -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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_memutils.F90 -o ../mpp/mpp_memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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_pset.F90 -o ../mpp/mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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_efp.F90 -o ../mpp/mpp_efp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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_type.F90 -o ../horiz_interp/horiz_interp_type.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/gradient.F90 -o ../mosaic/gradient.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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_domains.F90 -o ../mpp/mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/drifters_comm.F90 -o ../drifters/drifters_comm.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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_util.F90 -o ../diag_manager/diag_util.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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_table.F90 -o ../diag_manager/diag_table.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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_manager.F90 -o ../diag_manager/diag_manager.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 ../exchange/xgrid.F90 -o ../exchange/xgrid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/coupler_types.F90 -o ../coupler/coupler_types.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Compiling 32BIT=Y into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=Y nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_cplfields.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -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/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -a - physics/co2hc.o -a - physics/date_def.o -a - physics/dcyc2.o -a - physics/dcyc2.pre.rad.o -a - physics/efield.o -a - physics/get_prs.o -a - physics/gocart_tracer_config_stub.o -a - physics/gscond.o -a - physics/gscondp.o -a - physics/gwdc.o -a - physics/gwdps.o -a - physics/ugwp_driver_v0.o -a - physics/cires_orowam2017.o -a - physics/h2o_def.o -a - physics/h2oc.o -a - physics/h2ohdc.o -a - physics/h2ophys.o -a - physics/ideaca.o -a - physics/idea_co2.o -a - physics/idea_composition.o -a - physics/idea_dissipation.o -a - physics/idea_h2o.o -a - physics/idea_ion.o -a - physics/idea_o2_o3.o -a - physics/idea_phys.o -a - physics/idea_solar_heating.o -a - physics/idea_tracer.o -a - physics/iounitdef.o -a - physics/lrgsclr.o -a - physics/mersenne_twister.o -a - physics/mfpbl.o -a - physics/mfpblt.o -a - physics/mfpbltq.o -a - physics/mfscu.o -a - physics/mfscuq.o -a - physics/module_bfmicrophysics.o -a - physics/moninedmf.o -a - physics/moninedmf_hafs.o -a - physics/moninp.o -a - physics/moninp1.o -a - physics/moninq.o -a - physics/moninq1.o -a - physics/moninshoc.o -a - physics/mstadb.o -a - physics/mstadbtn.o -a - physics/mstadbtn2.o -a - physics/mstcnv.o -a - physics/namelist_soilveg.o -a - physics/ozne_def.o -a - physics/iccn_def.o -a - physics/aerclm_def.o -a - physics/ozphys.o -a - physics/ozphys_2015.o -a - physics/physparam.o -a - physics/precpd.o -a - physics/precpd_shoc.o -a - physics/precpdp.o -a - physics/progt2.o -a - physics/progtm_module.o -a - physics/rad_initialize.o -a - physics/radiation_aerosols.o -a - physics/radiation_astronomy.o -a - physics/radiation_clouds.o -a - physics/radiation_gases.o -a - physics/radiation_surface.o -a - physics/radlw_datatb.o -a - physics/radlw_main.o -a - physics/radlw_param.o -a - physics/radsw_datatb.o -a - physics/radsw_main.o -a - physics/radsw_param.o -a - physics/rascnvv2.o -a - physics/rayleigh_damp.o -a - physics/rayleigh_damp_mesopause.o -a - physics/samfaerosols.o -a - physics/samfdeepcnv.o -a - physics/samfshalcnv.o -a - physics/sascnv.o -a - physics/sascnvn.o -a - physics/satmedmfvdif.o -a - physics/satmedmfvdifq.o -a - physics/set_soilveg.o -a - physics/sfc_cice.o -a - physics/sfc_diag.o -a - physics/sfc_diff.o -a - physics/sfc_drv.o -a - physics/sfc_noahmp_drv.o -a - physics/sfc_nst.o -a - physics/sfc_ocean.o -a - physics/sfc_sice.o -a - physics/sflx.o -a - physics/shalcnv.o -a - physics/shalcv.o -a - physics/shalcv_1lyr.o -a - physics/shalcv_fixdp.o -a - physics/shalcv_opr.o -a - physics/tracer_const_h.o -a - physics/tridi2t3.o -a - physics/calpreciptype.o -a - physics/funcphys.o -a - physics/gcm_shoc.o -a - physics/get_prs_fv3.o -a - physics/h2ointerp.o -a - physics/module_nst_model.o -a - physics/module_nst_parameters.o -a - physics/module_nst_water_prop.o -a - physics/ozinterp.o -a - physics/module_wrf_utl.o -a - physics/noahmp_tables.o -a - physics/module_sf_noahmplsm.o -a - physics/module_sf_noahmp_glacier.o -a - physics/iccninterp.o -a - physics/aerinterp.o -a - physics/wam_f107_kp_mod.o -a - physics/aer_cloud.o -a - physics/cldmacro.o -a - physics/cldwat2m_micro.o -a - physics/gfs_phy_tracer_config.o -a - physics/machine.o -a - physics/num_parthds.o -a - physics/sfcsub.o -a - physics/wv_saturation.o -a - physics/GFDL_parse_tracers.o -a - physics/gcycle.o -a - physics/cires_ugwp_initialize.o -a - physics/cires_ugwp_module.o -a - physics/cires_ugwp_utils.o -a - physics/cires_ugwp_triggers.o -a - physics/cires_ugwp_solvers.o -a - physics/cires_vert_lsatdis.o -a - physics/cires_vert_orodis.o -a - physics/cires_vert_wmsdis.o -a - physics/gfdl_cloud_microphys.o -a - physics/micro_mg_utils.o -a - physics/micro_mg2_0.o -a - physics/micro_mg3_0.o -a - physics/m_micro_driver.o -a - physics/cs_conv.o -a - physics/GFS_debug.o -a - physics/module_mp_radar.o -a - physics/module_mp_thompson_gfs.o -a - physics/module_mp_wsm6_fv3.o -a - physics/physcons.o -a - physics/surface_perturbation.o -a - GFS_layer/GFS_abstraction_layer.o -a - GFS_layer/GFS_diagnostics.o -a - GFS_layer/GFS_driver.o -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c FV3GFS_io.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_write_internal_state.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c post_gfs_stub.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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_cmp.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_cmp.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fv3_config.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c time_utils.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c atmos_model.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fcst_grid_comp.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; \ -gmake nems \ - COMPONENTS="FMS FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 20:44:41 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 20:44:41 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 20:44:41 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 20:44:41 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 20:44:41 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 20:44:41 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 20:44:41 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 20:44:41 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 20:44:41 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 20:44:41 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=ifort -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libstochastic_physics.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_3.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_3.exe -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_3 BUILD_ENV=cheyenne.intel FV3_MAKEOPT=32BIT=Y NEMS_BUILDOPT= clean -Will copy modules.nems and NEMS.x as fv3_3 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake 32BIT=Y -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -+ elapsed=755 -+ echo 'Elapsed time 755 seconds. Compiling 32BIT=Y finished' -Elapsed time 755 seconds. Compiling 32BIT=Y finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.intel -+ BUILD_TARGET=cheyenne.intel -+ readonly 'MAKE_OPT=32BIT=Y DEBUG=Y' -+ MAKE_OPT='32BIT=Y DEBUG=Y' -+ readonly BUILD_NAME=fv3_4 -+ BUILD_NAME=fv3_4 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -cheyenne6 -+ echo 'Compiling 32BIT=Y DEBUG=Y into fv3_4.exe on cheyenne.intel' -Compiling 32BIT=Y DEBUG=Y into fv3_4.exe on cheyenne.intel -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake -+ [[ cheyenne.intel == cheyenne.* ]] -+ MAKE_THREADS=3 -+ MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ 32BIT=Y DEBUG=Y == *\C\C\P\P\=\Y* ]] -+ [[ 32BIT=Y DEBUG=Y == *\W\W\3\=\Y* ]] -+ [[ 32BIT=Y DEBUG=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ 32BIT=Y DEBUG=Y == *\R\E\P\R\O\=\Y* ]] -+ [[ 32BIT=Y DEBUG=Y == *\D\E\B\U\G\=\Y* ]] -+ NEMS_BUILDOPT=DEBUG=Y -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_4 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=32BIT=Y DEBUG=Y' NEMS_BUILDOPT=DEBUG=Y distclean -Will copy modules.nems and NEMS.x as fv3_4 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake 32BIT=Y DEBUG=Y -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_4 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=32BIT=Y DEBUG=Y' NEMS_BUILDOPT=DEBUG=Y build -Will copy modules.nems and NEMS.x as fv3_4 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/modulefiles/cheyenne.intel/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_4" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_4 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/conf/configure.fv3.cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ -exec gmake 32BIT=Y DEBUG=Y all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/drifters_core.F90 -o ../drifters/drifters_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/drifters_input.F90 -o ../drifters/drifters_input.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/drifters_io.F90 -o ../drifters/drifters_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/quicksort.F90 -o ../drifters/quicksort.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_k.F90 -o ../sat_vapor_pres/sat_vapor_pres_k.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -c ../memutils/memuse.c -o ../memutils/memuse.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//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 -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//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 -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//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 -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//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 -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//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 -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -c ../mpp/threadloc.c -o ../mpp/threadloc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../constants/constants.F90 -o ../constants/constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_data.F90 -o ../mpp/mpp_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_efp.F90 -o ../mpp/mpp_efp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_memutils.F90 -o ../mpp/mpp_memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_pset.F90 -o ../mpp/mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_type.F90 -o ../horiz_interp/horiz_interp_type.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/gradient.F90 -o ../mosaic/gradient.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../fft/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_domains.F90 -o ../mpp/mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/drifters_comm.F90 -o ../drifters/drifters_comm.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/field_manager.F90 -o ../field_manager/field_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_grid.F90 -o ../diag_manager/diag_grid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/mosaic.F90 -o ../mosaic/mosaic.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../fft/fft.F90 -o ../fft/fft.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_output.F90 -o ../diag_manager/diag_output.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_util.F90 -o ../diag_manager/diag_util.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Compiling 32BIT=Y DEBUG=Y into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=Y DEBUG=Y nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_cplfields.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -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/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -a - physics/co2hc.o -a - physics/date_def.o -a - physics/dcyc2.o -a - physics/dcyc2.pre.rad.o -a - physics/efield.o -a - physics/get_prs.o -a - physics/gocart_tracer_config_stub.o -a - physics/gscond.o -a - physics/gscondp.o -a - physics/gwdc.o -a - physics/gwdps.o -a - physics/ugwp_driver_v0.o -a - physics/cires_orowam2017.o -a - physics/h2o_def.o -a - physics/h2oc.o -a - physics/h2ohdc.o -a - physics/h2ophys.o -a - physics/ideaca.o -a - physics/idea_co2.o -a - physics/idea_composition.o -a - physics/idea_dissipation.o -a - physics/idea_h2o.o -a - physics/idea_ion.o -a - physics/idea_o2_o3.o -a - physics/idea_phys.o -a - physics/idea_solar_heating.o -a - physics/idea_tracer.o -a - physics/iounitdef.o -a - physics/lrgsclr.o -a - physics/mersenne_twister.o -a - physics/mfpbl.o -a - physics/mfpblt.o -a - physics/mfpbltq.o -a - physics/mfscu.o -a - physics/mfscuq.o -a - physics/module_bfmicrophysics.o -a - physics/moninedmf.o -a - physics/moninedmf_hafs.o -a - physics/moninp.o -a - physics/moninp1.o -a - physics/moninq.o -a - physics/moninq1.o -a - physics/moninshoc.o -a - physics/mstadb.o -a - physics/mstadbtn.o -a - physics/mstadbtn2.o -a - physics/mstcnv.o -a - physics/namelist_soilveg.o -a - physics/ozne_def.o -a - physics/iccn_def.o -a - physics/aerclm_def.o -a - physics/ozphys.o -a - physics/ozphys_2015.o -a - physics/physparam.o -a - physics/precpd.o -a - physics/precpd_shoc.o -a - physics/precpdp.o -a - physics/progt2.o -a - physics/progtm_module.o -a - physics/rad_initialize.o -a - physics/radiation_aerosols.o -a - physics/radiation_astronomy.o -a - physics/radiation_clouds.o -a - physics/radiation_gases.o -a - physics/radiation_surface.o -a - physics/radlw_datatb.o -a - physics/radlw_main.o -a - physics/radlw_param.o -a - physics/radsw_datatb.o -a - physics/radsw_main.o -a - physics/radsw_param.o -a - physics/rascnvv2.o -a - physics/rayleigh_damp.o -a - physics/rayleigh_damp_mesopause.o -a - physics/samfaerosols.o -a - physics/samfdeepcnv.o -a - physics/samfshalcnv.o -a - physics/sascnv.o -a - physics/sascnvn.o -a - physics/satmedmfvdif.o -a - physics/satmedmfvdifq.o -a - physics/set_soilveg.o -a - physics/sfc_cice.o -a - physics/sfc_diag.o -a - physics/sfc_diff.o -a - physics/sfc_drv.o -a - physics/sfc_noahmp_drv.o -a - physics/sfc_nst.o -a - physics/sfc_ocean.o -a - physics/sfc_sice.o -a - physics/sflx.o -a - physics/shalcnv.o -a - physics/shalcv.o -a - physics/shalcv_1lyr.o -a - physics/shalcv_fixdp.o -a - physics/shalcv_opr.o -a - physics/tracer_const_h.o -a - physics/tridi2t3.o -a - physics/calpreciptype.o -a - physics/funcphys.o -a - physics/gcm_shoc.o -a - physics/get_prs_fv3.o -a - physics/h2ointerp.o -a - physics/module_nst_model.o -a - physics/module_nst_parameters.o -a - physics/module_nst_water_prop.o -a - physics/ozinterp.o -a - physics/module_wrf_utl.o -a - physics/noahmp_tables.o -a - physics/module_sf_noahmplsm.o -a - physics/module_sf_noahmp_glacier.o -a - physics/iccninterp.o -a - physics/aerinterp.o -a - physics/wam_f107_kp_mod.o -a - physics/aer_cloud.o -a - physics/cldmacro.o -a - physics/cldwat2m_micro.o -a - physics/gfs_phy_tracer_config.o -a - physics/machine.o -a - physics/num_parthds.o -a - physics/sfcsub.o -a - physics/wv_saturation.o -a - physics/GFDL_parse_tracers.o -a - physics/gcycle.o -a - physics/cires_ugwp_initialize.o -a - physics/cires_ugwp_module.o -a - physics/cires_ugwp_utils.o -a - physics/cires_ugwp_triggers.o -a - physics/cires_ugwp_solvers.o -a - physics/cires_vert_lsatdis.o -a - physics/cires_vert_orodis.o -a - physics/cires_vert_wmsdis.o -a - physics/gfdl_cloud_microphys.o -a - physics/micro_mg_utils.o -a - physics/micro_mg2_0.o -a - physics/micro_mg3_0.o -a - physics/m_micro_driver.o -a - physics/cs_conv.o -a - physics/GFS_debug.o -a - physics/module_mp_radar.o -a - physics/module_mp_thompson_gfs.o -a - physics/module_mp_wsm6_fv3.o -a - physics/physcons.o -a - physics/surface_perturbation.o -a - GFS_layer/GFS_abstraction_layer.o -a - GFS_layer/GFS_diagnostics.o -a - GFS_layer/GFS_driver.o -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c FV3GFS_io.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_write_internal_state.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c post_gfs_stub.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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_cmp.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_cmp.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fv3_config.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c time_utils.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c atmos_model.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fcst_grid_comp.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; \ -gmake nems DEBUG=Y \ - COMPONENTS="FMS FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 21:31:48 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 21:31:48 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 21:31:48 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 21:31:48 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 21:31:48 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 21:31:48 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 21:31:48 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 21:31:48 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 21:31:48 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 21:31:48 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=ifort -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libstochastic_physics.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_4.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_4.exe -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_4 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=32BIT=Y DEBUG=Y' NEMS_BUILDOPT=DEBUG=Y clean -Will copy modules.nems and NEMS.x as fv3_4 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake 32BIT=Y DEBUG=Y -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -+ elapsed=168 -+ echo 'Elapsed time 168 seconds. Compiling 32BIT=Y DEBUG=Y finished' -Elapsed time 168 seconds. Compiling 32BIT=Y DEBUG=Y finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.intel -+ BUILD_TARGET=cheyenne.intel -+ readonly MAKE_OPT=REPRO=Y -+ MAKE_OPT=REPRO=Y -+ readonly BUILD_NAME=fv3_5 -+ BUILD_NAME=fv3_5 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -cheyenne6 -+ echo 'Compiling REPRO=Y into fv3_5.exe on cheyenne.intel' -Compiling REPRO=Y into fv3_5.exe on cheyenne.intel -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake -+ [[ cheyenne.intel == cheyenne.* ]] -+ MAKE_THREADS=3 -+ MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ REPRO=Y == *\C\C\P\P\=\Y* ]] -+ [[ REPRO=Y == *\W\W\3\=\Y* ]] -+ [[ REPRO=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y == *\R\E\P\R\O\=\Y* ]] -+ NEMS_BUILDOPT=REPRO=Y -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_5 BUILD_ENV=cheyenne.intel FV3_MAKEOPT=REPRO=Y NEMS_BUILDOPT=REPRO=Y distclean -Will copy modules.nems and NEMS.x as fv3_5 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake REPRO=Y -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_5 BUILD_ENV=cheyenne.intel FV3_MAKEOPT=REPRO=Y NEMS_BUILDOPT=REPRO=Y build -Will copy modules.nems and NEMS.x as fv3_5 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/modulefiles/cheyenne.intel/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_5" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_5 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/conf/configure.fv3.cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ -exec gmake REPRO=Y all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../memutils/memuse.c -o ../memutils/memuse.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mpp/threadloc.c -o ../mpp/threadloc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_domains.F90 -o ../mpp/mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../sat_vapor_pres/sat_vapor_pres.F90 -o ../sat_vapor_pres/sat_vapor_pres.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_axis.F90 -o ../diag_manager/diag_axis.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/xbt_drop_rate_adjust.f90 -o ../oda_tools/xbt_drop_rate_adjust.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_output.F90 -o ../diag_manager/diag_output.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Compiling REPRO=Y into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL REPRO=Y nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_cplfields.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_radiation_driver.F90 > GFS_layer/GFS_radiation_driver.tmp.f90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_physics_driver.F90 > GFS_layer/GFS_physics_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -a - physics/co2hc.o -a - physics/date_def.o -a - physics/dcyc2.o -a - physics/dcyc2.pre.rad.o -a - physics/efield.o -a - physics/get_prs.o -a - physics/gocart_tracer_config_stub.o -a - physics/gscond.o -a - physics/gscondp.o -a - physics/gwdc.o -a - physics/gwdps.o -a - physics/ugwp_driver_v0.o -a - physics/cires_orowam2017.o -a - physics/h2o_def.o -a - physics/h2oc.o -a - physics/h2ohdc.o -a - physics/h2ophys.o -a - physics/ideaca.o -a - physics/idea_co2.o -a - physics/idea_composition.o -a - physics/idea_dissipation.o -a - physics/idea_h2o.o -a - physics/idea_ion.o -a - physics/idea_o2_o3.o -a - physics/idea_phys.o -a - physics/idea_solar_heating.o -a - physics/idea_tracer.o -a - physics/iounitdef.o -a - physics/lrgsclr.o -a - physics/mersenne_twister.o -a - physics/mfpbl.o -a - physics/mfpblt.o -a - physics/mfpbltq.o -a - physics/mfscu.o -a - physics/mfscuq.o -a - physics/module_bfmicrophysics.o -a - physics/moninedmf.o -a - physics/moninedmf_hafs.o -a - physics/moninp.o -a - physics/moninp1.o -a - physics/moninq.o -a - physics/moninq1.o -a - physics/moninshoc.o -a - physics/mstadb.o -a - physics/mstadbtn.o -a - physics/mstadbtn2.o -a - physics/mstcnv.o -a - physics/namelist_soilveg.o -a - physics/ozne_def.o -a - physics/iccn_def.o -a - physics/aerclm_def.o -a - physics/ozphys.o -a - physics/ozphys_2015.o -a - physics/physparam.o -a - physics/precpd.o -a - physics/precpd_shoc.o -a - physics/precpdp.o -a - physics/progt2.o -a - physics/progtm_module.o -a - physics/rad_initialize.o -a - physics/radiation_aerosols.o -a - physics/radiation_astronomy.o -a - physics/radiation_clouds.o -a - physics/radiation_gases.o -a - physics/radiation_surface.o -a - physics/radlw_datatb.o -a - physics/radlw_main.o -a - physics/radlw_param.o -a - physics/radsw_datatb.o -a - physics/radsw_main.o -a - physics/radsw_param.o -a - physics/rascnvv2.o -a - physics/rayleigh_damp.o -a - physics/rayleigh_damp_mesopause.o -a - physics/samfaerosols.o -a - physics/samfdeepcnv.o -a - physics/samfshalcnv.o -a - physics/sascnv.o -a - physics/sascnvn.o -a - physics/satmedmfvdif.o -a - physics/satmedmfvdifq.o -a - physics/set_soilveg.o -a - physics/sfc_cice.o -a - physics/sfc_diag.o -a - physics/sfc_diff.o -a - physics/sfc_drv.o -a - physics/sfc_noahmp_drv.o -a - physics/sfc_nst.o -a - physics/sfc_ocean.o -a - physics/sfc_sice.o -a - physics/sflx.o -a - physics/shalcnv.o -a - physics/shalcv.o -a - physics/shalcv_1lyr.o -a - physics/shalcv_fixdp.o -a - physics/shalcv_opr.o -a - physics/tracer_const_h.o -a - physics/tridi2t3.o -a - physics/calpreciptype.o -a - physics/funcphys.o -a - physics/gcm_shoc.o -a - physics/get_prs_fv3.o -a - physics/h2ointerp.o -a - physics/module_nst_model.o -a - physics/module_nst_parameters.o -a - physics/module_nst_water_prop.o -a - physics/ozinterp.o -a - physics/module_wrf_utl.o -a - physics/noahmp_tables.o -a - physics/module_sf_noahmplsm.o -a - physics/module_sf_noahmp_glacier.o -a - physics/iccninterp.o -a - physics/aerinterp.o -a - physics/wam_f107_kp_mod.o -a - physics/aer_cloud.o -a - physics/cldmacro.o -a - physics/cldwat2m_micro.o -a - physics/gfs_phy_tracer_config.o -a - physics/machine.o -a - physics/num_parthds.o -a - physics/sfcsub.o -a - physics/wv_saturation.o -a - physics/GFDL_parse_tracers.o -a - physics/gcycle.o -a - physics/cires_ugwp_initialize.o -a - physics/cires_ugwp_module.o -a - physics/cires_ugwp_utils.o -a - physics/cires_ugwp_triggers.o -a - physics/cires_ugwp_solvers.o -a - physics/cires_vert_lsatdis.o -a - physics/cires_vert_orodis.o -a - physics/cires_vert_wmsdis.o -a - physics/gfdl_cloud_microphys.o -a - physics/micro_mg_utils.o -a - physics/micro_mg2_0.o -a - physics/micro_mg3_0.o -a - physics/m_micro_driver.o -a - physics/cs_conv.o -a - physics/GFS_debug.o -a - physics/module_mp_radar.o -a - physics/module_mp_thompson_gfs.o -a - physics/module_mp_wsm6_fv3.o -a - physics/physcons.o -a - physics/surface_perturbation.o -a - GFS_layer/GFS_abstraction_layer.o -a - GFS_layer/GFS_diagnostics.o -a - GFS_layer/GFS_driver.o -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c FV3GFS_io.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_write_internal_state.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c post_gfs_stub.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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_cmp.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_cmp.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fv3_config.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c time_utils.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c atmos_model.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fcst_grid_comp.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; \ -gmake nems REPRO=Y \ - COMPONENTS="FMS FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 21:57:37 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 21:57:37 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 21:57:37 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 21:57:37 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 21:57:37 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 21:57:37 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 21:57:37 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 21:57:37 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 21:57:37 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 21:57:37 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=ifort -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libstochastic_physics.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_5.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_5.exe -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_5 BUILD_ENV=cheyenne.intel FV3_MAKEOPT=REPRO=Y NEMS_BUILDOPT=REPRO=Y clean -Will copy modules.nems and NEMS.x as fv3_5 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake REPRO=Y -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -+ elapsed=693 -+ echo 'Elapsed time 693 seconds. Compiling REPRO=Y finished' -Elapsed time 693 seconds. Compiling REPRO=Y finished -+ SECONDS=0 -+ [[ 3 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ readonly APP=standaloneFV3_repro -+ APP=standaloneFV3_repro -+ readonly BUILD_NAME=fv3_6 -+ BUILD_NAME=fv3_6 -+ hostname -cheyenne6 -+ echo 'Compiling app standaloneFV3_repro into fv3_6.exe' -Compiling app standaloneFV3_repro into fv3_6.exe -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/.. -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS/exe/NEMS.x -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS/src/conf/modules.nems -+ set +e -+ ./NEMS/NEMSAppBuilder app=standaloneFV3_repro -ls: cannot access '../conf/component_*.mk': No such file or directory -NEMSAppBuilder: make app=standaloneFV3_repro distclean -Convert /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/standaloneFV3_repro.appBuilder -...into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/standaloneFV3_repro.appBuilder.mk -Include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/standaloneFV3_repro.appBuilder.mk -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec make REPRO=Y -f makefile.temp.clean clean -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec make \ - -k cleanall FMS_DIR=/dev/null -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; make "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test_results.mk -NEMSAppBuilder: make app=standaloneFV3_repro build -Convert /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/standaloneFV3_repro.appBuilder -...into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/standaloneFV3_repro.appBuilder.mk -Include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/standaloneFV3_repro.appBuilder.mk -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/conf/configure.fv3.cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/modulefiles/cheyenne.intel/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk: No such file or directory -make -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" TEST -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ -exec make REPRO=Y all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_domains.F90 -o ../mpp/mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/xbt_drop_rate_adjust.f90 -o ../oda_tools/xbt_drop_rate_adjust.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../sat_vapor_pres/sat_vapor_pres.F90 -o ../sat_vapor_pres/sat_vapor_pres.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../memutils/memuse.c -o ../memutils/memuse.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mpp/threadloc.c -o ../mpp/threadloc.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL"/. -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Compiling REPRO=Y into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; \ - exec make COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL REPRO=Y nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Building dependencies ... -make -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_cplfields.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_radiation_driver.F90 > GFS_layer/GFS_radiation_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_physics_driver.F90 > GFS_layer/GFS_physics_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -a - physics/co2hc.o -a - physics/date_def.o -a - physics/dcyc2.o -a - physics/dcyc2.pre.rad.o -a - physics/efield.o -a - physics/get_prs.o -a - physics/gocart_tracer_config_stub.o -a - physics/gscond.o -a - physics/gscondp.o -a - physics/gwdc.o -a - physics/gwdps.o -a - physics/ugwp_driver_v0.o -a - physics/cires_orowam2017.o -a - physics/h2o_def.o -a - physics/h2oc.o -a - physics/h2ohdc.o -a - physics/h2ophys.o -a - physics/ideaca.o -a - physics/idea_co2.o -a - physics/idea_composition.o -a - physics/idea_dissipation.o -a - physics/idea_h2o.o -a - physics/idea_ion.o -a - physics/idea_o2_o3.o -a - physics/idea_phys.o -a - physics/idea_solar_heating.o -a - physics/idea_tracer.o -a - physics/iounitdef.o -a - physics/lrgsclr.o -a - physics/mersenne_twister.o -a - physics/mfpbl.o -a - physics/mfpblt.o -a - physics/mfpbltq.o -a - physics/mfscu.o -a - physics/mfscuq.o -a - physics/module_bfmicrophysics.o -a - physics/moninedmf.o -a - physics/moninedmf_hafs.o -a - physics/moninp.o -a - physics/moninp1.o -a - physics/moninq.o -a - physics/moninq1.o -a - physics/moninshoc.o -a - physics/mstadb.o -a - physics/mstadbtn.o -a - physics/mstadbtn2.o -a - physics/mstcnv.o -a - physics/namelist_soilveg.o -a - physics/ozne_def.o -a - physics/iccn_def.o -a - physics/aerclm_def.o -a - physics/ozphys.o -a - physics/ozphys_2015.o -a - physics/physparam.o -a - physics/precpd.o -a - physics/precpd_shoc.o -a - physics/precpdp.o -a - physics/progt2.o -a - physics/progtm_module.o -a - physics/rad_initialize.o -a - physics/radiation_aerosols.o -a - physics/radiation_astronomy.o -a - physics/radiation_clouds.o -a - physics/radiation_gases.o -a - physics/radiation_surface.o -a - physics/radlw_datatb.o -a - physics/radlw_main.o -a - physics/radlw_param.o -a - physics/radsw_datatb.o -a - physics/radsw_main.o -a - physics/radsw_param.o -a - physics/rascnvv2.o -a - physics/rayleigh_damp.o -a - physics/rayleigh_damp_mesopause.o -a - physics/samfaerosols.o -a - physics/samfdeepcnv.o -a - physics/samfshalcnv.o -a - physics/sascnv.o -a - physics/sascnvn.o -a - physics/satmedmfvdif.o -a - physics/satmedmfvdifq.o -a - physics/set_soilveg.o -a - physics/sfc_cice.o -a - physics/sfc_diag.o -a - physics/sfc_diff.o -a - physics/sfc_drv.o -a - physics/sfc_noahmp_drv.o -a - physics/sfc_nst.o -a - physics/sfc_ocean.o -a - physics/sfc_sice.o -a - physics/sflx.o -a - physics/shalcnv.o -a - physics/shalcv.o -a - physics/shalcv_1lyr.o -a - physics/shalcv_fixdp.o -a - physics/shalcv_opr.o -a - physics/tracer_const_h.o -a - physics/tridi2t3.o -a - physics/calpreciptype.o -a - physics/funcphys.o -a - physics/gcm_shoc.o -a - physics/get_prs_fv3.o -a - physics/h2ointerp.o -a - physics/module_nst_model.o -a - physics/module_nst_parameters.o -a - physics/module_nst_water_prop.o -a - physics/ozinterp.o -a - physics/module_wrf_utl.o -a - physics/noahmp_tables.o -a - physics/module_sf_noahmplsm.o -a - physics/module_sf_noahmp_glacier.o -a - physics/iccninterp.o -a - physics/aerinterp.o -a - physics/wam_f107_kp_mod.o -a - physics/aer_cloud.o -a - physics/cldmacro.o -a - physics/cldwat2m_micro.o -a - physics/gfs_phy_tracer_config.o -a - physics/machine.o -a - physics/num_parthds.o -a - physics/sfcsub.o -a - physics/wv_saturation.o -a - physics/GFDL_parse_tracers.o -a - physics/gcycle.o -a - physics/cires_ugwp_initialize.o -a - physics/cires_ugwp_module.o -a - physics/cires_ugwp_utils.o -a - physics/cires_ugwp_triggers.o -a - physics/cires_ugwp_solvers.o -a - physics/cires_vert_lsatdis.o -a - physics/cires_vert_orodis.o -a - physics/cires_vert_wmsdis.o -a - physics/gfdl_cloud_microphys.o -a - physics/micro_mg_utils.o -a - physics/micro_mg2_0.o -a - physics/micro_mg3_0.o -a - physics/m_micro_driver.o -a - physics/cs_conv.o -a - physics/GFS_debug.o -a - physics/module_mp_radar.o -a - physics/module_mp_thompson_gfs.o -a - physics/module_mp_wsm6_fv3.o -a - physics/physcons.o -a - physics/surface_perturbation.o -a - GFS_layer/GFS_abstraction_layer.o -a - GFS_layer/GFS_diagnostics.o -a - GFS_layer/GFS_driver.o -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c FV3GFS_io.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_write_internal_state.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c post_gfs_stub.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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_cmp.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_cmp.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 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fv3_config.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c atmos_model.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fcst_grid_comp.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c time_utils.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -make esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL" complete! - -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; \ -make nems \ - COMPONENTS="FMS FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && make stub -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 23:25:39 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 23:25:39 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 23:25:39 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 23:25:39 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 23:25:39 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 23:25:39 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 23:25:39 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 23:25:39 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 23:25:39 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 23:25:39 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=ifort -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libstochastic_physics.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x is created. -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -+ RC=0 -+ set -e -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/.. -+ [[ 0 -ne 0 ]] -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../tests/fv3_6.exe -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../tests/modules.fv3_6 -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS/src -+ gmake clean -Components in linker order: -rm -f -f *.tmp.f90 *.lst *.o *.mod lm map -cd ENS_Cpl ; gmake clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ gmake cleanall -Cleaning ... - -(cd gfsphysics && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -+ rm -rf FV3_INSTALL -+ rm -rf nems_dir -+ elapsed=1093 -+ echo 'Elapsed time 1093 seconds. Compiling app standaloneFV3_repro finished' -Elapsed time 1093 seconds. Compiling app standaloneFV3_repro finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.intel -+ BUILD_TARGET=cheyenne.intel -+ readonly 'MAKE_OPT=REPRO=Y 32BIT=Y' -+ MAKE_OPT='REPRO=Y 32BIT=Y' -+ readonly BUILD_NAME=fv3_7 -+ BUILD_NAME=fv3_7 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -cheyenne6 -+ echo 'Compiling REPRO=Y 32BIT=Y into fv3_7.exe on cheyenne.intel' -Compiling REPRO=Y 32BIT=Y into fv3_7.exe on cheyenne.intel -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake -+ [[ cheyenne.intel == cheyenne.* ]] -+ MAKE_THREADS=3 -+ MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ REPRO=Y 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ [[ REPRO=Y 32BIT=Y == *\W\W\3\=\Y* ]] -+ [[ REPRO=Y 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ NEMS_BUILDOPT=REPRO=Y -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_7 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=REPRO=Y 32BIT=Y' NEMS_BUILDOPT=REPRO=Y distclean -Will copy modules.nems and NEMS.x as fv3_7 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake REPRO=Y 32BIT=Y -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_7 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=REPRO=Y 32BIT=Y' NEMS_BUILDOPT=REPRO=Y build -Will copy modules.nems and NEMS.x as fv3_7 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/modulefiles/cheyenne.intel/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_7" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_7 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/conf/configure.fv3.cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ -exec gmake REPRO=Y 32BIT=Y all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../memutils/memuse.c -o ../memutils/memuse.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mpp/threadloc.c -o ../mpp/threadloc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_domains.F90 -o ../mpp/mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_axis.F90 -o ../diag_manager/diag_axis.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../sat_vapor_pres/sat_vapor_pres.F90 -o ../sat_vapor_pres/sat_vapor_pres.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/xbt_drop_rate_adjust.f90 -o ../oda_tools/xbt_drop_rate_adjust.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Compiling REPRO=Y 32BIT=Y into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL REPRO=Y 32BIT=Y nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_cplfields.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_radiation_driver.F90 > GFS_layer/GFS_radiation_driver.tmp.f90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_physics_driver.F90 > GFS_layer/GFS_physics_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -a - physics/co2hc.o -a - physics/date_def.o -a - physics/dcyc2.o -a - physics/dcyc2.pre.rad.o -a - physics/efield.o -a - physics/get_prs.o -a - physics/gocart_tracer_config_stub.o -a - physics/gscond.o -a - physics/gscondp.o -a - physics/gwdc.o -a - physics/gwdps.o -a - physics/ugwp_driver_v0.o -a - physics/cires_orowam2017.o -a - physics/h2o_def.o -a - physics/h2oc.o -a - physics/h2ohdc.o -a - physics/h2ophys.o -a - physics/ideaca.o -a - physics/idea_co2.o -a - physics/idea_composition.o -a - physics/idea_dissipation.o -a - physics/idea_h2o.o -a - physics/idea_ion.o -a - physics/idea_o2_o3.o -a - physics/idea_phys.o -a - physics/idea_solar_heating.o -a - physics/idea_tracer.o -a - physics/iounitdef.o -a - physics/lrgsclr.o -a - physics/mersenne_twister.o -a - physics/mfpbl.o -a - physics/mfpblt.o -a - physics/mfpbltq.o -a - physics/mfscu.o -a - physics/mfscuq.o -a - physics/module_bfmicrophysics.o -a - physics/moninedmf.o -a - physics/moninedmf_hafs.o -a - physics/moninp.o -a - physics/moninp1.o -a - physics/moninq.o -a - physics/moninq1.o -a - physics/moninshoc.o -a - physics/mstadb.o -a - physics/mstadbtn.o -a - physics/mstadbtn2.o -a - physics/mstcnv.o -a - physics/namelist_soilveg.o -a - physics/ozne_def.o -a - physics/iccn_def.o -a - physics/aerclm_def.o -a - physics/ozphys.o -a - physics/ozphys_2015.o -a - physics/physparam.o -a - physics/precpd.o -a - physics/precpd_shoc.o -a - physics/precpdp.o -a - physics/progt2.o -a - physics/progtm_module.o -a - physics/rad_initialize.o -a - physics/radiation_aerosols.o -a - physics/radiation_astronomy.o -a - physics/radiation_clouds.o -a - physics/radiation_gases.o -a - physics/radiation_surface.o -a - physics/radlw_datatb.o -a - physics/radlw_main.o -a - physics/radlw_param.o -a - physics/radsw_datatb.o -a - physics/radsw_main.o -a - physics/radsw_param.o -a - physics/rascnvv2.o -a - physics/rayleigh_damp.o -a - physics/rayleigh_damp_mesopause.o -a - physics/samfaerosols.o -a - physics/samfdeepcnv.o -a - physics/samfshalcnv.o -a - physics/sascnv.o -a - physics/sascnvn.o -a - physics/satmedmfvdif.o -a - physics/satmedmfvdifq.o -a - physics/set_soilveg.o -a - physics/sfc_cice.o -a - physics/sfc_diag.o -a - physics/sfc_diff.o -a - physics/sfc_drv.o -a - physics/sfc_noahmp_drv.o -a - physics/sfc_nst.o -a - physics/sfc_ocean.o -a - physics/sfc_sice.o -a - physics/sflx.o -a - physics/shalcnv.o -a - physics/shalcv.o -a - physics/shalcv_1lyr.o -a - physics/shalcv_fixdp.o -a - physics/shalcv_opr.o -a - physics/tracer_const_h.o -a - physics/tridi2t3.o -a - physics/calpreciptype.o -a - physics/funcphys.o -a - physics/gcm_shoc.o -a - physics/get_prs_fv3.o -a - physics/h2ointerp.o -a - physics/module_nst_model.o -a - physics/module_nst_parameters.o -a - physics/module_nst_water_prop.o -a - physics/ozinterp.o -a - physics/module_wrf_utl.o -a - physics/noahmp_tables.o -a - physics/module_sf_noahmplsm.o -a - physics/module_sf_noahmp_glacier.o -a - physics/iccninterp.o -a - physics/aerinterp.o -a - physics/wam_f107_kp_mod.o -a - physics/aer_cloud.o -a - physics/cldmacro.o -a - physics/cldwat2m_micro.o -a - physics/gfs_phy_tracer_config.o -a - physics/machine.o -a - physics/num_parthds.o -a - physics/sfcsub.o -a - physics/wv_saturation.o -a - physics/GFDL_parse_tracers.o -a - physics/gcycle.o -a - physics/cires_ugwp_initialize.o -a - physics/cires_ugwp_module.o -a - physics/cires_ugwp_utils.o -a - physics/cires_ugwp_triggers.o -a - physics/cires_ugwp_solvers.o -a - physics/cires_vert_lsatdis.o -a - physics/cires_vert_orodis.o -a - physics/cires_vert_wmsdis.o -a - physics/gfdl_cloud_microphys.o -a - physics/micro_mg_utils.o -a - physics/micro_mg2_0.o -a - physics/micro_mg3_0.o -a - physics/m_micro_driver.o -a - physics/cs_conv.o -a - physics/GFS_debug.o -a - physics/module_mp_radar.o -a - physics/module_mp_thompson_gfs.o -a - physics/module_mp_wsm6_fv3.o -a - physics/physcons.o -a - physics/surface_perturbation.o -a - GFS_layer/GFS_abstraction_layer.o -a - GFS_layer/GFS_diagnostics.o -a - GFS_layer/GFS_driver.o -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c FV3GFS_io.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_write_internal_state.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c post_gfs_stub.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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_cmp.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_cmp.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fv3_config.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c time_utils.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c atmos_model.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fcst_grid_comp.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; \ -gmake nems REPRO=Y \ - COMPONENTS="FMS FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 23:39:29 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 23:39:29 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 23:39:29 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 23:39:29 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 23:39:29 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 23:39:29 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 23:39:29 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 23:39:29 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 23:39:29 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Thu Oct 24 23:39:29 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=297' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=ifort -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libstochastic_physics.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_7.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_7.exe -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_7 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=REPRO=Y 32BIT=Y' NEMS_BUILDOPT=REPRO=Y clean -Will copy modules.nems and NEMS.x as fv3_7 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake REPRO=Y 32BIT=Y -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -+ elapsed=683 -+ echo 'Elapsed time 683 seconds. Compiling REPRO=Y 32BIT=Y finished' -Elapsed time 683 seconds. Compiling REPRO=Y 32BIT=Y finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ readonly BUILD_TARGET=cheyenne.intel -+ BUILD_TARGET=cheyenne.intel -+ readonly 'MAKE_OPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017' -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017' -+ readonly BUILD_NAME=fv3_8 -+ BUILD_NAME=fv3_8 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -cheyenne6 -+ echo 'Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 into fv3_8.exe on cheyenne.intel' -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 into fv3_8.exe on cheyenne.intel -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake -+ [[ cheyenne.intel == cheyenne.* ]] -+ MAKE_THREADS=3 -+ MAKE_THREADS=3 -+ [[ 3 -gt 1 ]] -+ echo Using '$MAKE_THREADS=3' threads to build FV3 and FMS. -Using $MAKE_THREADS=3 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 3' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\W\W\3\=\Y* ]] -+ [[ 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 == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\R\E\P\R\O\=\Y* ]] -+ NEMS_BUILDOPT=REPRO=Y -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_8 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017' NEMS_BUILDOPT=REPRO=Y distclean -Will copy modules.nems and NEMS.x as fv3_8 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017 --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include" ; \ -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --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 formet -INFO: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include -GNUmakefile:70: : component CCPP makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test_results.mk -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_8 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017' NEMS_BUILDOPT=REPRO=Y build -Will copy modules.nems and NEMS.x as fv3_8 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/modulefiles/cheyenne.intel/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_8" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/modules.fv3_8 -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/conf/configure.fv3.cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ -exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/threadloc.c -o ../mpp/threadloc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017 ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh cheyenne.intel "$PATH_CCPP" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk \ - "REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"" NO NO ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/include ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --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 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 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 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 slc of variable volume_fraction_of_unfrozen_soil_moisture 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 phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top 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 sec of variable seconds_elapsed_since_model_initialization 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 kbot of variable vertical_index_at_cloud_base 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 stc of variable soil_temperature 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 xlaixy of variable leaf_area_index 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 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 phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back 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 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 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 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 v10m of variable y_wind_at_10m 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 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 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 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 nmtvr of variable number_of_statistical_measures_of_subgrid_orography 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 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 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 ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial 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 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 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 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 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 levs of variable vertical_dimension 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 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 w_0 of variable coefficient_w_0 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 pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter 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 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 phy_myj_chkqlm of variable surface_layer_evaporation_switch 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 sdec of variable sine_of_solar_declination_angle 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 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 dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep 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 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 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 lgocart of variable flag_gocart 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 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 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 sinlat of variable sine_of_latitude 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 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 do_sfcperts of variable flag_for_stochastic_surface_perturbations 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 tsfc_ice of variable surface_skin_temperature_over_ice_interstitial 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 debug of variable flag_debug 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 u1 of variable x_wind_at_lowest_model_layer_for_diag 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 do_myjsfc of variable do_myjsfc 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 gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics 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 slopetype of variable surface_slope_classification 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 levh2o of variable vertical_dimension_of_h2o_forcing_data 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 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 save_q of variable tracer_concentration_save 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 cf_upi of variable convective_cloud_fraction_for_microphysics 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial 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 dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL 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 tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave 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 forcet of variable temperature_tendency_due_to_dynamics 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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 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 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 ntchmdiag of variable number_of_chemical_tracers_for_diagnostics 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 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 dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column 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 islmsk_cice of variable sea_land_ice_mask_cice 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 pgr of variable surface_air_pressure 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 nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling 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 nscav of variable number_of_tracers_scavenged 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 zorl_ice of variable surface_roughness_length_over_ice_interstitial 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 aero_in of variable flag_for_aerosol_input_MG 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 avg_max_length of variable time_interval_for_maximum_hourly_fields 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 kind_LOGICAL of variable kind_LOGICAL 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial 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 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 mdt of variable time_step_for_remapping_for_fast_physics 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 sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model 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 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 runoff of variable total_runoff 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 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 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 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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial 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 nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation 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 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 qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio 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 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 oceanfrac of variable sea_area_fraction 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 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 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 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 ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land 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 phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back 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 con_t0c of variable temperature_at_zero_celsius 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 dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling 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 shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term 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 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 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 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 mom4ice of variable flag_for_mom4_coupling 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 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 tsfcl of variable surface_skin_temperature_over_land 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ozphys -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 ozphys_2015 -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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme noahmpdrv -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 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 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_noahmp_pre -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 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 mp_thompson_post -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 gwdps_post -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 lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme mynnrad_post -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 lsm_noah -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme dcyc2t3_post -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -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 cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -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 conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep -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 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 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 explicit_rainfall_rate_from_previous_timestep -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_aerosol_input_MG -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_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_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_shoc_after_convection -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 graupel_precipitation_rate_from_previous_timestep -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_precipitation_rate_from_previous_timestep -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 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 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 namelist_filename_for_internal_file_reads -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_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_precipitation_rate_from_previous_timestep -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_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 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_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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 162 schemes to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.mk, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 5 auto-generated caps to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.mk and /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ ./build_ccpp.sh cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk 'REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp' NO NO -MACHINE_ID=cheyenne.intel is valid. -Compilers set for cheyenne.intel. -Obtained ESMF_LIB=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib from /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -DNETCDF_DIR=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/ -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DOPENMP=ON -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 19.0.0.20190117 --- The CXX compiler identification is Intel 19.0.0.20190117 --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- The Fortran compiler identification is Intel 19.0.0.20190117 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 supports Fortran 90 --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 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 LibXml2: /usr/lib64/libxml2.so (found version "2.9.4") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.6") --- 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 SCHEMES from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 --- Configuring done --- Generating done --- Build files have been written to: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields_idx.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_utils.c -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.c -[ 8%] Linking Fortran static library libccpp.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar qc libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/test_fields.dir/test_fields.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_fields.c -[ 9%] Linking C executable test_fields -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -O2 -fPIC -qopenmp -qopenmp CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -[ 10%] Linking Fortran executable test_check -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_check.dir/test_check.f90.o -o test_check ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 11%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -[ 12%] Linking Fortran executable test_init_finalize -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o.provides.build -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 99%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -[100%] Linking Fortran static library libccppphys.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/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_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/mfscu.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/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[2]: Nothing to be done for 'preinstall'. -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Bitforbit" --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccpp.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config-bitforbit.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_utils.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_errors.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_strings.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_suite.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_types.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_api.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccppphys.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config-bitforbit.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_stochastics_cap.mod -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Building dependencies ... -gmake -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_cplfields.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=N # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_data.F90 -o CCPP_layer/CCPP_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=N # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... - -Build CCPP layer ... - -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -gmake -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c FV3GFS_io.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_write_internal_state.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c post_gfs_stub.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fv3_config.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c time_utils.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c atmos_model.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fcst_grid_comp.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -gmake esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; \ -gmake nems REPRO=Y \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL CCPP_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 01:01:59 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 01:01:59 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 01:01:59 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 01:01:59 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 01:01:59 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 01:01:59 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 01:01:59 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 01:01:59 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 01:01:59 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 01:01:59 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=ifort -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libccppdriver.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libstochastic_physics.a -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -L/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -set -xe ; cp "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_8.exe" -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/tests/fv3_8.exe -+ '[' YES = YES ']' -+ gmake -j 3 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_8 BUILD_ENV=cheyenne.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017' NEMS_BUILDOPT=REPRO=Y clean -Will copy modules.nems and NEMS.x as fv3_8 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -+ elapsed=1015 -+ echo 'Elapsed time 1015 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 finished' -Elapsed time 1015 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 finished -+ SECONDS=0 -+ [[ 3 -lt 2 ]] -+ readonly PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ PATHTR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ readonly APP=CCPP_repro -+ APP=CCPP_repro -+ readonly BUILD_NAME=fv3_9 -+ BUILD_NAME=fv3_9 -+ hostname -cheyenne6 -+ echo 'Compiling app CCPP_repro into fv3_9.exe' -Compiling app CCPP_repro into fv3_9.exe -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/.. -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS/exe/NEMS.x -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS/src/conf/modules.nems -+ set +e -+ ./NEMS/NEMSAppBuilder app=CCPP_repro -ls: cannot access '../conf/component_*.mk': No such file or directory -NEMSAppBuilder: make app=CCPP_repro distclean -Convert /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/CCPP_repro.appBuilder -...into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/CCPP_repro.appBuilder.mk -Include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/CCPP_repro.appBuilder.mk -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ - exec make REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" -f makefile.temp.clean clean -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build" -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017 --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib" ; \ -rm -rf "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include" ; \ -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --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 formet -INFO: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -+ rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; exec make \ - -k cleanall FMS_DIR=/dev/null -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Cleaning ... - -(cd gfsphysics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -rm -rf nems_dir FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/configure.fv3 \ - /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/conf/modules.fv3 -rm -rf /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -if ! test -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; make "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk -rm -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test_results.mk -NEMSAppBuilder: make app=CCPP_repro build -Convert /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/CCPP_repro.appBuilder -...into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/CCPP_repro.appBuilder.mk -Include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/CCPP_repro.appBuilder.mk -echo 'FMS CCPP FV3' > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/conf/configure.fv3.cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems -cat /dev/null > /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/externals.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/modulefiles/cheyenne.intel/fv3 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems -cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ESMFVersionDefine.h -( echo '. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.sh" -( echo 'source /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems.csh" -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/configure_rules.mk:3: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk: No such file or directory -make -f /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" TEST -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ; \ -) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/test-results.mk" -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS' -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs ; \ -exec make REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" all - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -Building dependencies ... -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_horiz_interp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/interp.c -o ../mosaic/interp.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/affinity.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/nsclock.c -o ../mpp/nsclock.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -c ../mpp/threadloc.c -o ../mpp/threadloc.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL" -mv fms.mk "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL"/. -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/fv3gfs' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --suites=FV3_GFS_2017 ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh cheyenne.intel "$PATH_CCPP" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk \ - "REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"" NO NO ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/include ; \ -test -d "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -+ export PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025 -+ /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 --static --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 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 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 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 slc of variable volume_fraction_of_unfrozen_soil_moisture 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 phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top 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 sec of variable seconds_elapsed_since_model_initialization 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 kbot of variable vertical_index_at_cloud_base 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 stc of variable soil_temperature 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 xlaixy of variable leaf_area_index 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 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 phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back 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 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 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 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 v10m of variable y_wind_at_10m 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 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 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 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 nmtvr of variable number_of_statistical_measures_of_subgrid_orography 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 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 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 ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial 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 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 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 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 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 levs of variable vertical_dimension 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 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 w_0 of variable coefficient_w_0 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 pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter 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 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 phy_myj_chkqlm of variable surface_layer_evaporation_switch 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 sdec of variable sine_of_solar_declination_angle 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 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 dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep 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 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 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 lgocart of variable flag_gocart 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 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 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 sinlat of variable sine_of_latitude 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 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 do_sfcperts of variable flag_for_stochastic_surface_perturbations 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 tsfc_ice of variable surface_skin_temperature_over_ice_interstitial 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 debug of variable flag_debug 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 u1 of variable x_wind_at_lowest_model_layer_for_diag 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 do_myjsfc of variable do_myjsfc 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 gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics 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 slopetype of variable surface_slope_classification 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 levh2o of variable vertical_dimension_of_h2o_forcing_data 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 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 save_q of variable tracer_concentration_save 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 cf_upi of variable convective_cloud_fraction_for_microphysics 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial 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 dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL 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 tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave 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 forcet of variable temperature_tendency_due_to_dynamics 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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 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 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 ntchmdiag of variable number_of_chemical_tracers_for_diagnostics 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 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 dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column 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 islmsk_cice of variable sea_land_ice_mask_cice 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 pgr of variable surface_air_pressure 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 nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling 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 nscav of variable number_of_tracers_scavenged 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 zorl_ice of variable surface_roughness_length_over_ice_interstitial 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 aero_in of variable flag_for_aerosol_input_MG 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 avg_max_length of variable time_interval_for_maximum_hourly_fields 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 kind_LOGICAL of variable kind_LOGICAL 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial 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 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 mdt of variable time_step_for_remapping_for_fast_physics 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 sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model 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 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 runoff of variable total_runoff 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 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 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 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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial 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 nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation 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 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 qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio 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 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 oceanfrac of variable sea_area_fraction 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 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 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 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 ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land 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 phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back 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 con_t0c of variable temperature_at_zero_celsius 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 dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling 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 shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term 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 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 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 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 mom4ice of variable flag_for_mom4_coupling 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 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 tsfcl of variable surface_skin_temperature_over_land 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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 ozphys -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 ozphys_2015 -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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme noahmpdrv -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 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 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_noahmp_pre -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 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 mp_thompson_post -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 gwdps_post -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 lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme mynnrad_post -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 lsm_noah -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme dcyc2t3_post -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -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 cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -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 conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep -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 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 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 explicit_rainfall_rate_from_previous_timestep -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_aerosol_input_MG -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_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_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_shoc_after_convection -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 graupel_precipitation_rate_from_previous_timestep -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_precipitation_rate_from_previous_timestep -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 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 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 namelist_filename_for_internal_file_reads -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_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_precipitation_rate_from_previous_timestep -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_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 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_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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 162 schemes to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.mk, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 5 auto-generated caps to /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.mk and /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ ./build_ccpp.sh cheyenne.intel /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk 'REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp' NO NO -MACHINE_ID=cheyenne.intel is valid. -Compilers set for cheyenne.intel. -Obtained ESMF_LIB=/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib from /glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -DNETCDF_DIR=/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/ -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DOPENMP=ON -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 19.0.0.20190117 --- The CXX compiler identification is Intel 19.0.0.20190117 --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc --- Check for working C compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx --- Check for working CXX compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicxx -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- The Fortran compiler identification is Intel 19.0.0.20190117 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 --- Check for working Fortran compiler: /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 supports Fortran 90 --- Checking whether /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 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 LibXml2: /usr/lib64/libxml2.so (found version "2.9.4") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.6") --- 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 SCHEMES from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/calpreciptype.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpbl.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_orowam2017.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/num_parthds.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sflx.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 --- Configuring done --- Generating done --- Build files have been written to: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_dl.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_fields_idx.c -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_utils.c -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/ccpp_xml.c -[ 8%] Linking Fortran static library libccpp.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar qc libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src -O2 -fPIC -qopenmp -qopenmp -o CMakeFiles/test_fields.dir/test_fields.c.o -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_fields.c -[ 9%] Linking C executable test_fields -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpicc -O2 -fPIC -qopenmp -qopenmp CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -[ 10%] Linking Fortran executable test_check -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_check.dir/test_check.f90.o -o test_check ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 11%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -[ 12%] Linking Fortran executable test_init_finalize -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o.provides.build -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 99%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /glade/u/apps/ch/opt/ncarcompilers/0.5.0/intel/19.0.2/mpi/mpif90 -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -[100%] Linking Fortran static library libccppphys.a -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics && /usr/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_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/mfscu.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/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -H/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -B/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 10%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[ 12%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[4]: 'physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[3]: Nothing to be done for 'physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -[100%] Built target ccppphys -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -make[2]: Nothing to be done for 'preinstall'. -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Bitforbit" --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccpp.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccpp-config-bitforbit.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_utils.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_dl.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_errors.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fields.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_strings.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_suite.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_types.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_xml.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_api.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/libccppphys.a --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib/cmake/ccppphys-config-bitforbit.cmake --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_time_vary_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_radiation_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_physics_cap.mod --- Installing: /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include/ccpp_fv3_gfs_2017_stochastics_cap.mod -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/build' -REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -+ test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" into /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL on cheyenne -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/configure.fv3 -cp -fp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/modules.nems \ - "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3"/conf/modules.fv3 -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 ; \ - exec make COMP=FV3 COMP_SRCDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 COMP_BINDIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL MACHINE_ID=cheyenne FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Building dependencies ... -make -C cpl FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Building dependencies ... - -Build standalone FV3 io ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_cplfields.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' -make -C gfsphysics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=N # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -makefile:278: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_data.F90 -o CCPP_layer/CCPP_data.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -make -C ccpp/driver FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N DYN32=N # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -makefile:67: depend: No such file or directory -Building dependencies ... - -Build CCPP layer ... - -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -make -C ipd FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -makefile:54: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 gfsphysics ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -make -C io FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -Building dependencies ... - -Build standalone FV3 io ... - -$ESMF_INC is [-I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include] -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c FV3GFS_io.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_write_internal_state.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c post_gfs_stub.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_nemsio.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -I/glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/include -c module_write_netcdf.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_wrt_grid_comp.F90 -ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs_stub.o module_write_nemsio.o module_write_netcdf.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_stub.o -a - module_write_nemsio.o -a - module_write_netcdf.o -a - module_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -make -C atmos_cubed_sphere FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Building dependencies ... - -Build standalone FV3 fv3core ... - -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -Converting pointers to allocatable components -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_mapz.F90 -o model/fv_mapz.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_utils.F90 -o model/nh_utils.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -make -C ../stochastic_physics FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -makefile:86: depend: No such file or directory -Building dependencies ... - -Build standalone FV3 stochastic_physics ... - -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -make libfv3cap.a FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fv3_config.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c atmos_model.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c module_fcst_grid_comp.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -c time_utils.F90 -mpif90 -f90=ifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -make esmf_make_fragment FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -make[2]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -Installation into "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL" complete! - -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3' -test -d /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk" ; ) > "/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/configure.nems.NUOPC" -. /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 60000 ; module use /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk ; \ -cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src ; \ -make nems \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL CCPP_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp FV3_DIR=/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL TARGET="/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x" ; \ -test -x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) ncarenv/1.3 4) ncarcompilers/0.5.0 7) NCEPlibs/9.9.9 - 2) intel/19.0.2 5) netcdf/4.6.3 8) SIONlib/1.7.4 - 3) mpt/2.19 6) esmf/8.0.0 9) modules.nems - - - -build NEMS after /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -Components in linker order: FV3 CCPP FMS -FV3: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/fv3.mk -CCPP: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/ccpp.mk -FMS: include /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="NoGit" -CPPFLAGS += ESMF_VERSION_MINOR="0" -CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" -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'" -cd ENS_Cpl && make stub -make[2]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/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 '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 02:12:10 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 02:12:10 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 02:12:10 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 -mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o -'module_MEDIATOR.tmp.o' -> 'module_MEDIATOR.o' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 02:12:10 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 02:12:10 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 02:12:10 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 02:12:10 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 02:12:10 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 02:12:10 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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' -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -c nems_c_rusage.c -mpicc -cc=icc -DMPI2_SUPPORT -DFSEEKO64_OK -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(heinzell) Fri Oct 25 02:12:10 MDT 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=298' -DESMF_VERSION_STRING_GIT="NoGit" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -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 -mpif90 -f90=ifort -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/mod -I/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/include -I/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2/include -IENS_Cpl -I. -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/fms -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../stochastic_physics -I-I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/include -I/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -extlibs is /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -mpif90 -f90=ifort -o /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cap.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libccppdriver.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3core.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3io.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libipd.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libgfsphys.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libfv3cpl.a /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/FV3_INSTALL/libstochastic_physics.a -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -L/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libnemsio_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libbacio_4.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libsp_v2.0.2_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3emc_d.a /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190703/intel-19.0.2/mpt-2.19/lib/libw3nco_d.a -L/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -Wl,-rpath,/glade/p/ral/jntp/GMTB/tools/esmf-8.0.0/intel-19.0.2/mpt-2.19/lib -lesmf -lmpi++ -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/glade/u/apps/ch/opt/netcdf/4.6.3/intel/19.0.2//lib -lnetcdff -lnetcdf -L/glade/p/ral/jntp/GMTB/tools/sionlib-1.7.4/intel-19.0.2/mpt-2.19/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none -/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/exe/NEMS.x is created. -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src' -+ RC=0 -+ set -e -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/.. -+ [[ 0 -ne 0 ]] -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS/exe/NEMS.x /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../tests/fv3_9.exe -+ cp /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS/src/conf/modules.nems /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../tests/modules.fv3_9 -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/../NEMS/src -+ gmake clean -Components in linker order: -rm -f -f *.tmp.f90 *.lst *.o *.mod lm map -cd ENS_Cpl ; gmake clean -gmake[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/NEMS/src/ENS_Cpl' -+ cd /glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3 -+ gmake cleanall -Cleaning ... - -(cd gfsphysics && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/gfsphysics' -(cd ccpp/driver && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' - -Build CCPP layer ... - -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ccpp/driver' -(cd ipd && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/ipd' -(cd ../stochastic_physics && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/stochastic_physics' -(cd io && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' - -Build standalone FV3 io ... - -$ESMF_INC is [] -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/io' -(cd atmos_cubed_sphere && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/atmos_cubed_sphere' -(cd cpl && make clean) -make[1]: Entering directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/FV3/cpl' - -Build standalone FV3 io ... - -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[1]: Leaving directory '/glade/work/heinzell/fv3/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/intel_20191025/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 -+ rm -rf FV3_INSTALL -+ rm -rf nems_dir -+ elapsed=1249 -+ echo 'Elapsed time 1249 seconds. Compiling app CCPP_repro finished' -Elapsed time 1249 seconds. Compiling app CCPP_repro finished +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o +[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o +[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o +[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o +[ 64%] 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. +[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.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. +[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o +[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o +[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o +[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o +[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o +[ 68%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o +[ 68%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o +[ 68%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o +[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o +[ 70%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o +[ 70%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o +[ 70%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o +[ 70%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o +[ 71%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o +[ 71%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o +[ 71%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o +[ 71%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o +[ 72%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o +[ 72%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o +[ 72%] Linking Fortran static library FMS/libfms.a +[ 72%] Built target fms +[ 72%] 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 +[ 72%] 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 +[ 74%] Linking Fortran static library libccppdriver.a +[ 74%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o +[ 74%] 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/io/CMakeFiles/io.dir/module_write_nemsio.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 +[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o +[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o +[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs_stub.F90.o +[ 78%] 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. +[ 78%] 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 +[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o +[ 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/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.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/model/fv_sg.F90.o +[ 80%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.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/fv_grid_utils.F90.o +[ 80%] 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. +[ 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 +[ 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 +[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o +[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o +[ 83%] 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/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 +[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o +[ 85%] 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/dyn_core.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/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 +[ 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/spectral_layout.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_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 +[ 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 +fpp: warning: keyword redefined: STATIC +[ 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/plumes.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/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 +[ 95%] 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_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 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 +[100%] Built target NEMS.exe ++ mv NEMS.exe ../fv3_2.exe ++ cp /glade/work/heinzell/fv3/ufs-weather-model/ufs-weather-model_public-release_update-from-dtc-develop-20191209/intel/modulefiles/cheyenne.intel/fv3 ../modules.fv3_2 ++ cd .. ++ '[' YES = YES ']' ++ rm -rf build_fv3_2 ++ elapsed=158 ++ echo 'Elapsed time 158 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y finished' +Elapsed time 158 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y finished diff --git a/tests/Compile_hera.intel.log b/tests/Compile_hera.intel.log index 2baa170afb..6f597609ff 100644 --- a/tests/Compile_hera.intel.log +++ b/tests/Compile_hera.intel.log @@ -1,568 +1,59 @@ + SECONDS=0 ++++ readlink -f ./compile_cmake.sh +++ dirname /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/compile_cmake.sh ++ readonly MYDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests ++ MYDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests ++ readonly ARGC=4 ++ ARGC=4 ++ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests ++ [[ 4 -eq 0 ]] + [[ 4 -lt 2 ]] -+ readonly PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ readonly BUILD_TARGET=hera.intel -+ BUILD_TARGET=hera.intel -+ readonly 'MAKE_OPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' -+ readonly BUILD_NAME=fv3_10 -+ BUILD_NAME=fv3_10 -+ readonly clean_before=YES ++ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt ++ MACHINE_ID=hera.intel ++ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta' ++ BUILD_NAME=fv3_1 + clean_before=YES -+ readonly clean_after=YES + clean_after=YES -+ hostname -hfe06 -+ 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 -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake ++ BUILD_DIR=build_fv3_1 + [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == stampede.* ]] ++ [[ hera.intel == wcoss_dell_p3 ]] + 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\W\W\3\=\Y* ]] -+ [[ 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 == *\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* ]] -+ NEMS_BUILDOPT=REPRO=Y ++ hostname +hfe06 ++ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests ++ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta into fv3_1.exe on hera.intel' +Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta into fv3_1.exe on hera.intel + '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_10 BUILD_ENV=hera.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' NEMS_BUILDOPT=REPRO=Y distclean -Will copy modules.nems and NEMS.x as fv3_10 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include" ; \ -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched --clean -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: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test_results.mk -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_10 BUILD_ENV=hera.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' NEMS_BUILDOPT=REPRO=Y build -Will copy modules.nems and NEMS.x as fv3_10 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/modulefiles/hera.intel/fv3 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_10" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_10 -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/conf/configure.fv3.hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh" -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/configure_rules.mk:3: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=12000000 ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ; \ -) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ -exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" all - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL" -mv fms.mk "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh hera.intel "$PATH_CCPP" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk \ - "REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"" NO NO ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/include ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched ++ rm -rf build_fv3_1 ++ mkdir -p build_fv3_1 ++ 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt ++ ./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_1/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 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 @@ -591,7 +82,7 @@ INFO: Converting local name evap_land of variable kinematic_surface_upward_laten 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 @@ -905,6 +396,7 @@ INFO: Converting local name zorlo of variable surface_roughness_length_over_ocea 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 @@ -1295,7 +787,7 @@ INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux 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 save_q of variable tracer_concentration_save 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 runoff of variable total_runoff 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 @@ -1466,7 +958,7 @@ INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from 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 islmsk_cice of variable sea_land_ice_mask_cice 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 @@ -1605,7 +1097,7 @@ INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of var 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 runoff of variable total_runoff 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 @@ -1717,6 +1209,7 @@ INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_ 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 @@ -1764,6 +1257,7 @@ INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ 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 qgrs of variable tracer_concentration 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 con_t0c of variable temperature_at_zero_celsius from new to old metadata @@ -1876,7 +1370,7 @@ INFO: Converting local name restart of variable flag_for_restart from new to old 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html +INFO: Metadata table for model FV3 written to tests/build_fv3_1/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 @@ -1914,8 +1408,7 @@ 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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post +INFO: Parsed tables in scheme zhaocarr_precpd INFO: Parsed tables in scheme noahmpdrv INFO: Parsed tables in scheme myjpbl_wrapper INFO: Parsed tables in scheme GFS_surface_generic_pre @@ -1928,7 +1421,7 @@ 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 zhaocarr_precpd +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 @@ -1944,7 +1437,7 @@ 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_noahmp_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 @@ -1954,6 +1447,7 @@ 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 @@ -1964,7 +1458,6 @@ INFO: Parsed tables in scheme mp_thompson_post 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 gwdps_post INFO: Parsed tables in scheme cires_ugwp INFO: Parsed tables in scheme get_prs_fv3 INFO: Parsed tables in scheme get_phi_fv3 @@ -1974,9 +1467,7 @@ 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 GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post INFO: Parsed tables in scheme sfc_cice INFO: Parsed tables in scheme mynnrad_post INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre @@ -1993,6 +1484,8 @@ INFO: Parsed tables in scheme moninshoc INFO: filtering out variable GFS_stateout_type_instance 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 @@ -2006,8 +1499,10 @@ 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_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 @@ -2017,8 +1512,10 @@ 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_water_to_rain INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep 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 @@ -2042,7 +1539,6 @@ 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 explicit_rainfall_rate_from_previous_timestep 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 @@ -2057,6 +1553,7 @@ 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_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 @@ -2073,21 +1570,17 @@ 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 graupel_precipitation_rate_from_previous_timestep 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_precipitation_rate_from_previous_timestep 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 @@ -2147,11 +1640,9 @@ 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 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 @@ -2176,7 +1667,6 @@ 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_precipitation_rate_from_previous_timestep 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 @@ -2189,6 +1679,8 @@ 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 @@ -2212,6 +1704,7 @@ 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 @@ -2229,7 +1722,6 @@ 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 @@ -2241,6 +1733,8 @@ 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 @@ -2254,39 +1748,590 @@ 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex +INFO: Metadata table for model FV3 written to tests/build_fv3_1/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 before entering 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 before entering 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 before entering MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 162 schemes to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.mk, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.sh +INFO: Added 164 schemes to tests/build_fv3_1/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_1/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_1/FV3/ccpp/physics/CCPP_SCHEMES.sh INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics ... +INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_1/FV3/ccpp/physics ... INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 11 auto-generated caps to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.mk and /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.cmake +INFO: Added 12 auto-generated caps to tests/build_fv3_1/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_1/FV3/ccpp/physics/CCPP_CAPS.cmake INFO: CCPP prebuild step completed successfully. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ ./build_ccpp.sh hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk 'REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/lib from /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -DNETCDF_DIR=/apps/netcdf/4.7.0/intel/18.0.5.274 -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DOPENMP=ON -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 18.0.0.20180823 --- The CXX compiler identification is Intel 18.0.0.20180823 ++ source build_fv3_1/FV3/ccpp/physics/CCPP_SCHEMES.sh +++ export 'CCPP_SCHEMES=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/aer_cloud.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/aerclm_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/aerinterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cldmacro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/date_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/funcphys.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gcycle.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/h2o_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/iccn_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/iccninterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/iounitdef.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/machine.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfpbl.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/multi_gases.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfpblt.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfpbltq.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfscu.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfscuq.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/num_parthds.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ozne_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ozinterp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/physcons.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/physparam.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radcons.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_gases.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_surface.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radlw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radsw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/samfaerosols.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfcsub.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sflx.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/set_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/tridi.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/wv_saturation.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radsw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gwdc.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gscond.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_sice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ozphys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/precpd.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_diag.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radlw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cs_conv.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/h2ophys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_nst.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/moninedmf.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_diff.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/m_micro.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gwdps.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/drag_suite.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_cice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cnvc90.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/dcyc2.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/moninshoc.f' +++ CCPP_SCHEMES='/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/aer_cloud.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/aerclm_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/aerinterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cldmacro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/date_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/funcphys.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gcycle.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/h2o_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/iccn_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/iccninterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/iounitdef.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/machine.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfpbl.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/multi_gases.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfpblt.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfpbltq.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfscu.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfscuq.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/num_parthds.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ozne_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ozinterp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/physcons.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/physparam.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radcons.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_gases.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_surface.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radlw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radsw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/samfaerosols.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfcsub.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sflx.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/set_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/tridi.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/wv_saturation.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radsw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gwdc.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gscond.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_sice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ozphys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/precpd.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_diag.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radlw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cs_conv.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/h2ophys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_nst.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/moninedmf.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_diff.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/m_micro.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gwdps.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/drag_suite.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_cice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cnvc90.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/dcyc2.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/moninshoc.f' ++ source build_fv3_1/FV3/ccpp/physics/CCPP_CAPS.sh +++ export 'CCPP_CAPS=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_stochastics_cap.F90' +++ CCPP_CAPS='/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_stochastics_cap.F90' ++ source build_fv3_1/FV3/ccpp/physics/CCPP_STATIC_API.sh +++ export CCPP_STATIC_API=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_static_api.F90 +++ CCPP_STATIC_API=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/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* ]] +++ 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/NEMS/src/conf/module-setup.sh.inc +++ __ms_function_name=setup__test_function__119509 +++ eval 'setup__test_function__119509() { /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__119509 | 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 '__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="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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 '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/home/Dom.Heinzeller/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";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/home/Dom.Heinzeller/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";' 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_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMS9CTUMvZ210Yi9Eb20uSGVpbnplbGxlci9ORU1TZnYzZ2ZzL3Vmcy13ZWF0aGVyLW1vZGVsX3Vmc19wdWJsaWNfcmVsZWFzZV91cGRhdGVfMjAxOTEyMTAvdWZzLXdlYXRoZXItbW9kZWxfcHVibGljLXJlbGVhc2VfdXBkYXRlLWZyb20tZHRjLWRldmVsb3AtMjAxOTEyMDkvcnQvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVs";' export '_ModuleTable001_;' '_ModuleTable002_="ZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' 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 __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='/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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 __LMOD_REF_COUNT_NLSPATH ++++ unset NLSPATH ++++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/home/Dom.Heinzeller/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' ++++ export __LMOD_REF_COUNT_PATH ++++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/home/Dom.Heinzeller/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 ++++ 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_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMS9CTUMvZ210Yi9Eb20uSGVpbnplbGxlci9ORU1TZnYzZ2ZzL3Vmcy13ZWF0aGVyLW1vZGVsX3Vmc19wdWJsaWNfcmVsZWFzZV91cGRhdGVfMjAxOTEyMTAvdWZzLXdlYXRoZXItbW9kZWxfcHVibGljLXJlbGVhc2VfdXBkYXRlLWZyb20tZHRjLWRldmVsb3AtMjAxOTEyMDkvcnQvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVs ++++ export _ModuleTable001_ ++++ _ModuleTable002_=ZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= ++++ 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__119509 +++ unset __ms_function_name ++ [[ hera.intel == macosx.* ]] ++ [[ hera.intel == linux.* ]] ++ module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/modulefiles/hera.intel +++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/modulefiles/hera.intel ++ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMS9CTUMvZ210Yi9Eb20uSGVpbnplbGxlci9ORU1TZnYzZ2ZzL3Vmcy13ZWF0aGVyLW1vZGVsX3Vmc19wdWJsaWNfcmVsZWFzZV91cGRhdGVfMjAxOTEyMTAvdWZzLXdlYXRoZXItbW9kZWxfcHVibGljLXJlbGVhc2VfdXBkYXRlLWZyb20tZHRjLWRldmVsb3AtMjAxOTEyMDkvcnQvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVs";' export '_ModuleTable001_;' '_ModuleTable002_="ZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' +++ __LMOD_REF_COUNT_MODULEPATH='/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMS9CTUMvZ210Yi9Eb20uSGVpbnplbGxlci9ORU1TZnYzZ2ZzL3Vmcy13ZWF0aGVyLW1vZGVsX3Vmc19wdWJsaWNfcmVsZWFzZV91cGRhdGVfMjAxOTEyMTAvdWZzLXdlYXRoZXItbW9kZWxfcHVibGljLXJlbGVhc2VfdXBkYXRlLWZyb20tZHRjLWRldmVsb3AtMjAxOTEyMDkvcnQvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVs +++ export _ModuleTable001_ +++ _ModuleTable002_=ZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= +++ 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="/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.5.1";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.5.1.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.5.1";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.5.1";' 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;' '__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="/apps/netcdf/4.7.0/intel/18.0.5.274/lib:1;/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="/apps/netcdf/4.7.0/intel/18.0.5.274/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;netcdf/4.7.0: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.5.1:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.0:1;esmf/8.0.0: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:netcdf/4.7.0: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.5.1:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.0:esmf/8.0.0:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/netcdf/4.7.0/intel/18.0.5.274/share/man:1;/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="/apps/netcdf/4.7.0/intel/18.0.5.274/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;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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:/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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="/apps/netcdf/4.7.0/intel/18.0.5.274";' export 'NETCDF;' '__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;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/bin:1;/apps/netcdf/4.7.0/intel/18.0.5.274/bin:1;/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;/home/Dom.Heinzeller/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";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/bin:/apps/netcdf/4.7.0/intel/18.0.5.274/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:/home/Dom.Heinzeller/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";' 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.0_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.0_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.0";' export 'POST_SRC;' 'POST_VER="v8.0.0";' 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;/apps/modules/modulefamilies/intel/netcdf/4.7.0: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.5.1: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.0:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles/esmf/8.0.0:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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:/apps/modules/modulefamilies/intel/netcdf/4.7.0:/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.5.1:/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.0:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles/esmf/8.0.0:/contrib/modulefiles/cmake/3.9.0:/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMS9OQ0VQREVWL25lbXMvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMCIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjAiLH0sZnYzPXtbImZuIl09Ii9zY3JhdGNoMS9CTUMvZ210Yi9Eb20uSGVpbnplbGxlci9ORU1TZnYzZ2ZzL3Vmcy13ZWF0aGVyLW1vZGVsX3Vmc19wdWJsaWNfcmVsZWFzZV91cGRhdGVfMjAxOTEy";' export '_ModuleTable003_;' '_ModuleTable004_="MTAvdWZzLXdlYXRoZXItbW9kZWxfcHVibGljLXJlbGVhc2VfdXBkYXRlLWZyb20tZHRjLWRldmVsb3AtMjAxOTEyMDkvcnQvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbC9mdjMiLFsiZnVsbE5hbWUiXT0iZnYzIixbImxvYWRPcmRlciJdPTIxLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTAsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImZ2MyIsfSxnMj17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvZzIvMy4xLjEiLFsiZnVsbE5hbWUiXT0iZzIvMy4xLjEiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzIvMy4xLjEiLH0s";' export '_ModuleTable004_;' '_ModuleTable005_="ZzJ0bXBsPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMnRtcGwvMS41LjEiLFsiZnVsbE5hbWUiXT0iZzJ0bXBsLzEuNS4xIixbImxvYWRPcmRlciJdPTEzLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcydG1wbC8xLjUuMSIsfSxpbXBpPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwvaW1waS8yMDE4LjAuNCIsWyJmdWxsTmFtZSJdPSJpbXBpLzIwMTguMC40IixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8yMDE4LjAuNCIsfSxp";' export '_ModuleTable005_;' '_ModuleTable006_="bnRlbD17WyJmbiJdPSIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL2ludGVsLzE4LjAuNS4yNzQiLFsiZnVsbE5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsWyJsb2FkT3JkZXIiXT0zLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImludGVsLzE4LjAuNS4yNzQiLH0saXA9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTcscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0samFzcGVyPXtbImZuIl09Ii9z";' export '_ModuleTable006_;' '_ModuleTable007_="Y3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9qYXNwZXIvMS45MDAuMSIsWyJmdWxsTmFtZSJdPSJqYXNwZXIvMS45MDAuMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMSIsfSxuZW1zaW89e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25lbXNpby8yLjIuNCIsWyJmdWxsTmFtZSJdPSJuZW1zaW8vMi4yLjQiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuZW1zaW8vMi4yLjQiLH0sbmV0";' export '_ModuleTable007_;' '_ModuleTable008_="Y2RmPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwvbmV0Y2RmLzQuNy4wIixbImZ1bGxOYW1lIl09Im5ldGNkZi80LjcuMCIsWyJsb2FkT3JkZXIiXT01LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZi80LjcuMCIsfSxwbmc9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3BuZy8xLjIuNDQiLFsiZnVsbE5hbWUiXT0icG5nLzEuMi40NCIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJwbmcvMS4yLjQ0Iix9LHBvc3Q9e1siZm4iXT0i";' export '_ModuleTable008_;' '_ModuleTable009_="L3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3Bvc3QvOC4wLjAiLFsiZnVsbE5hbWUiXT0icG9zdC84LjAuMCIsWyJsb2FkT3JkZXIiXT0xOCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJwb3N0LzguMC4wIix9LHNwPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9zcC8yLjAuMyIsWyJmdWxsTmFtZSJdPSJzcC8yLjAuMyIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InNwLzIuMC4zIix9LHN1dGlscz17WyJmbiJdPSIvY29udHJpYi9tb2R1";' export '_ModuleTable009_;' '_ModuleTable010_="bGVmaWxlcy9zdXRpbHMvZGVmYXVsdCIsWyJmdWxsTmFtZSJdPSJzdXRpbHMvZGVmYXVsdCIsWyJsb2FkT3JkZXIiXT0yLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InN1dGlscyIsfSx3M2VtYz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09MTAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0idzNlbWMvMi4zLjEiLH0sdzNuY289e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21v";' export '_ModuleTable010_;' '_ModuleTable011_="ZHVsZWZpbGVzL3czbmNvLzIuMC43IixbImZ1bGxOYW1lIl09InczbmNvLzIuMC43IixbImxvYWRPcmRlciJdPTExLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczbmNvLzIuMC43Iix9LHo9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3ovMS4yLjExIixbImZ1bGxOYW1lIl09InovMS4yLjExIixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InovMS4yLjExIix9LH0sbXBhdGhBPXsiL2NvbnRyaWIvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvQk1DL2dtdGIvRG9tLkhlaW56";' export '_ModuleTable011_;' '_ModuleTable012_="ZWxsZXIvTkVNU2Z2M2dmcy91ZnMtd2VhdGhlci1tb2RlbF91ZnNfcHVibGljX3JlbGVhc2VfdXBkYXRlXzIwMTkxMjEwL3Vmcy13ZWF0aGVyLW1vZGVsX3B1YmxpYy1yZWxlYXNlX3VwZGF0ZS1mcm9tLWR0Yy1kZXZlbG9wLTIwMTkxMjA5L3J0L21vZHVsZWZpbGVzL2hlcmEuaW50ZWwiLCIvYXBwcy9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXgiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzIiwiL29wdC9jcmF5L21vZHVsZWZpbGVzIiwiL29wdC9jcmF5L2NyYXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFt";' export '_ModuleTable012_;' '_ModuleTable013_="aWxpZXMvaW50ZWxfaW1waSIsIi9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsIi9zY3JhdGNoMS9OQ0VQREVWL25lbXMvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable013_;' '_ModuleTable_Sz_="13";' 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=/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib/esmf.mk +++ export ESMFMKFILE +++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.5.1 +++ export G2TMPL_INC +++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.5.1.a +++ export G2TMPL_LIB +++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.5.1 +++ export G2TMPL_SRC +++ G2TMPL_VER=v1.5.1 +++ 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 +++ __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='/apps/netcdf/4.7.0/intel/18.0.5.274/lib:1;/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=/apps/netcdf/4.7.0/intel/18.0.5.274/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;netcdf/4.7.0: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.5.1:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.0:1;esmf/8.0.0: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:netcdf/4.7.0: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.5.1:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.0:esmf/8.0.0:cmake/3.9.0:fv3 +++ export LOADEDMODULES +++ __LMOD_REF_COUNT_MANPATH='/apps/netcdf/4.7.0/intel/18.0.5.274/share/man:1;/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=/apps/netcdf/4.7.0/intel/18.0.5.274/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;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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:/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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=/apps/netcdf/4.7.0/intel/18.0.5.274 +++ export NETCDF +++ __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;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/bin:1;/apps/netcdf/4.7.0/intel/18.0.5.274/bin:1;/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;/home/Dom.Heinzeller/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' +++ export __LMOD_REF_COUNT_PATH +++ PATH=/contrib/cmake/3.9.0/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/bin:/apps/netcdf/4.7.0/intel/18.0.5.274/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:/home/Dom.Heinzeller/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 +++ 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.0_4 +++ export POST_INC +++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.0_4.a +++ export POST_LIB +++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.0 +++ export POST_SRC +++ POST_VER=v8.0.0 +++ 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;/apps/modules/modulefamilies/intel/netcdf/4.7.0: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.5.1: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.0:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles/esmf/8.0.0:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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:/apps/modules/modulefamilies/intel/netcdf/4.7.0:/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.5.1:/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.0:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles/esmf/8.0.0:/contrib/modulefiles/cmake/3.9.0:/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/modulefiles/hera.intel/fv3 +++ export _LMFILES_ +++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs +++ export _ModuleTable001_ +++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy +++ export _ModuleTable002_ +++ _ModuleTable003_=Il09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMS9OQ0VQREVWL25lbXMvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMCIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjAiLH0sZnYzPXtbImZuIl09Ii9zY3JhdGNoMS9CTUMvZ210Yi9Eb20uSGVpbnplbGxlci9ORU1TZnYzZ2ZzL3Vmcy13ZWF0aGVyLW1vZGVsX3Vmc19wdWJsaWNfcmVsZWFzZV91cGRhdGVfMjAxOTEy +++ export _ModuleTable003_ +++ _ModuleTable004_=MTAvdWZzLXdlYXRoZXItbW9kZWxfcHVibGljLXJlbGVhc2VfdXBkYXRlLWZyb20tZHRjLWRldmVsb3AtMjAxOTEyMDkvcnQvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbC9mdjMiLFsiZnVsbE5hbWUiXT0iZnYzIixbImxvYWRPcmRlciJdPTIxLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTAsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImZ2MyIsfSxnMj17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvZzIvMy4xLjEiLFsiZnVsbE5hbWUiXT0iZzIvMy4xLjEiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzIvMy4xLjEiLH0s +++ export _ModuleTable004_ +++ _ModuleTable005_=ZzJ0bXBsPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMnRtcGwvMS41LjEiLFsiZnVsbE5hbWUiXT0iZzJ0bXBsLzEuNS4xIixbImxvYWRPcmRlciJdPTEzLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcydG1wbC8xLjUuMSIsfSxpbXBpPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwvaW1waS8yMDE4LjAuNCIsWyJmdWxsTmFtZSJdPSJpbXBpLzIwMTguMC40IixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8yMDE4LjAuNCIsfSxp +++ export _ModuleTable005_ +++ _ModuleTable006_=bnRlbD17WyJmbiJdPSIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL2ludGVsLzE4LjAuNS4yNzQiLFsiZnVsbE5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsWyJsb2FkT3JkZXIiXT0zLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImludGVsLzE4LjAuNS4yNzQiLH0saXA9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTcscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0samFzcGVyPXtbImZuIl09Ii9z +++ export _ModuleTable006_ +++ _ModuleTable007_=Y3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9qYXNwZXIvMS45MDAuMSIsWyJmdWxsTmFtZSJdPSJqYXNwZXIvMS45MDAuMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMSIsfSxuZW1zaW89e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25lbXNpby8yLjIuNCIsWyJmdWxsTmFtZSJdPSJuZW1zaW8vMi4yLjQiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuZW1zaW8vMi4yLjQiLH0sbmV0 +++ export _ModuleTable007_ +++ _ModuleTable008_=Y2RmPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwvbmV0Y2RmLzQuNy4wIixbImZ1bGxOYW1lIl09Im5ldGNkZi80LjcuMCIsWyJsb2FkT3JkZXIiXT01LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZi80LjcuMCIsfSxwbmc9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3BuZy8xLjIuNDQiLFsiZnVsbE5hbWUiXT0icG5nLzEuMi40NCIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJwbmcvMS4yLjQ0Iix9LHBvc3Q9e1siZm4iXT0i +++ export _ModuleTable008_ +++ _ModuleTable009_=L3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3Bvc3QvOC4wLjAiLFsiZnVsbE5hbWUiXT0icG9zdC84LjAuMCIsWyJsb2FkT3JkZXIiXT0xOCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJwb3N0LzguMC4wIix9LHNwPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9zcC8yLjAuMyIsWyJmdWxsTmFtZSJdPSJzcC8yLjAuMyIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InNwLzIuMC4zIix9LHN1dGlscz17WyJmbiJdPSIvY29udHJpYi9tb2R1 +++ export _ModuleTable009_ +++ _ModuleTable010_=bGVmaWxlcy9zdXRpbHMvZGVmYXVsdCIsWyJmdWxsTmFtZSJdPSJzdXRpbHMvZGVmYXVsdCIsWyJsb2FkT3JkZXIiXT0yLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InN1dGlscyIsfSx3M2VtYz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09MTAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0idzNlbWMvMi4zLjEiLH0sdzNuY289e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21v +++ export _ModuleTable010_ +++ _ModuleTable011_=ZHVsZWZpbGVzL3czbmNvLzIuMC43IixbImZ1bGxOYW1lIl09InczbmNvLzIuMC43IixbImxvYWRPcmRlciJdPTExLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczbmNvLzIuMC43Iix9LHo9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3ovMS4yLjExIixbImZ1bGxOYW1lIl09InovMS4yLjExIixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InovMS4yLjExIix9LH0sbXBhdGhBPXsiL2NvbnRyaWIvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvQk1DL2dtdGIvRG9tLkhlaW56 +++ export _ModuleTable011_ +++ _ModuleTable012_=ZWxsZXIvTkVNU2Z2M2dmcy91ZnMtd2VhdGhlci1tb2RlbF91ZnNfcHVibGljX3JlbGVhc2VfdXBkYXRlXzIwMTkxMjEwL3Vmcy13ZWF0aGVyLW1vZGVsX3B1YmxpYy1yZWxlYXNlX3VwZGF0ZS1mcm9tLWR0Yy1kZXZlbG9wLTIwMTkxMjA5L3J0L21vZHVsZWZpbGVzL2hlcmEuaW50ZWwiLCIvYXBwcy9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXgiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzIiwiL29wdC9jcmF5L21vZHVsZWZpbGVzIiwiL29wdC9jcmF5L2NyYXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFt +++ export _ModuleTable012_ +++ _ModuleTable013_=aWxpZXMvaW50ZWxfaW1waSIsIi9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsIi9zY3JhdGNoMS9OQ0VQREVWL25lbXMvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= +++ export _ModuleTable013_ +++ _ModuleTable_Sz_=13 +++ 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'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''g2tmpl/1.5.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''esmf/8.0.0'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\''14)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''21)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''netcdf/4.7.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''11)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''z/1.2.11'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''post/8.0.0'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMS9OQ0VQREVWL25lbXMvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMCIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjAiLH0sZnYzPXtbImZuIl09Ii9zY3JhdGNoMS9CTUMvZ210Yi9Eb20uSGVpbnplbGxlci9ORU1TZnYzZ2ZzL3Vmcy13ZWF0aGVyLW1vZGVsX3Vmc19wdWJsaWNfcmVsZWFzZV91cGRhdGVfMjAxOTEy";' export '_ModuleTable003_;' '_ModuleTable004_="MTAvdWZzLXdlYXRoZXItbW9kZWxfcHVibGljLXJlbGVhc2VfdXBkYXRlLWZyb20tZHRjLWRldmVsb3AtMjAxOTEyMDkvcnQvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbC9mdjMiLFsiZnVsbE5hbWUiXT0iZnYzIixbImxvYWRPcmRlciJdPTIxLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTAsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImZ2MyIsfSxnMj17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvZzIvMy4xLjEiLFsiZnVsbE5hbWUiXT0iZzIvMy4xLjEiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzIvMy4xLjEiLH0s";' export '_ModuleTable004_;' '_ModuleTable005_="ZzJ0bXBsPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMnRtcGwvMS41LjEiLFsiZnVsbE5hbWUiXT0iZzJ0bXBsLzEuNS4xIixbImxvYWRPcmRlciJdPTEzLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcydG1wbC8xLjUuMSIsfSxpbXBpPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwvaW1waS8yMDE4LjAuNCIsWyJmdWxsTmFtZSJdPSJpbXBpLzIwMTguMC40IixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8yMDE4LjAuNCIsfSxp";' export '_ModuleTable005_;' '_ModuleTable006_="bnRlbD17WyJmbiJdPSIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL2ludGVsLzE4LjAuNS4yNzQiLFsiZnVsbE5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsWyJsb2FkT3JkZXIiXT0zLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImludGVsLzE4LjAuNS4yNzQiLH0saXA9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTcscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0samFzcGVyPXtbImZuIl09Ii9z";' export '_ModuleTable006_;' '_ModuleTable007_="Y3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9qYXNwZXIvMS45MDAuMSIsWyJmdWxsTmFtZSJdPSJqYXNwZXIvMS45MDAuMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMSIsfSxuZW1zaW89e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25lbXNpby8yLjIuNCIsWyJmdWxsTmFtZSJdPSJuZW1zaW8vMi4yLjQiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuZW1zaW8vMi4yLjQiLH0sbmV0";' export '_ModuleTable007_;' '_ModuleTable008_="Y2RmPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwvbmV0Y2RmLzQuNy4wIixbImZ1bGxOYW1lIl09Im5ldGNkZi80LjcuMCIsWyJsb2FkT3JkZXIiXT01LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZi80LjcuMCIsfSxwbmc9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3BuZy8xLjIuNDQiLFsiZnVsbE5hbWUiXT0icG5nLzEuMi40NCIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJwbmcvMS4yLjQ0Iix9LHBvc3Q9e1siZm4iXT0i";' export '_ModuleTable008_;' '_ModuleTable009_="L3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3Bvc3QvOC4wLjAiLFsiZnVsbE5hbWUiXT0icG9zdC84LjAuMCIsWyJsb2FkT3JkZXIiXT0xOCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJwb3N0LzguMC4wIix9LHNwPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9zcC8yLjAuMyIsWyJmdWxsTmFtZSJdPSJzcC8yLjAuMyIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InNwLzIuMC4zIix9LHN1dGlscz17WyJmbiJdPSIvY29udHJpYi9tb2R1";' export '_ModuleTable009_;' '_ModuleTable010_="bGVmaWxlcy9zdXRpbHMvZGVmYXVsdCIsWyJmdWxsTmFtZSJdPSJzdXRpbHMvZGVmYXVsdCIsWyJsb2FkT3JkZXIiXT0yLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InN1dGlscyIsfSx3M2VtYz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09MTAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0idzNlbWMvMi4zLjEiLH0sdzNuY289e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21v";' export '_ModuleTable010_;' '_ModuleTable011_="ZHVsZWZpbGVzL3czbmNvLzIuMC43IixbImZ1bGxOYW1lIl09InczbmNvLzIuMC43IixbImxvYWRPcmRlciJdPTExLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczbmNvLzIuMC43Iix9LHo9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3ovMS4yLjExIixbImZ1bGxOYW1lIl09InovMS4yLjExIixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InovMS4yLjExIix9LH0sbXBhdGhBPXsiL2NvbnRyaWIvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvQk1DL2dtdGIvRG9tLkhlaW56";' export '_ModuleTable011_;' '_ModuleTable012_="ZWxsZXIvTkVNU2Z2M2dmcy91ZnMtd2VhdGhlci1tb2RlbF91ZnNfcHVibGljX3JlbGVhc2VfdXBkYXRlXzIwMTkxMjEwL3Vmcy13ZWF0aGVyLW1vZGVsX3B1YmxpYy1yZWxlYXNlX3VwZGF0ZS1mcm9tLWR0Yy1kZXZlbG9wLTIwMTkxMjA5L3J0L21vZHVsZWZpbGVzL2hlcmEuaW50ZWwiLCIvYXBwcy9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXgiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzIiwiL29wdC9jcmF5L21vZHVsZWZpbGVzIiwiL29wdC9jcmF5L2NyYXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFt";' export '_ModuleTable012_;' '_ModuleTable013_="aWxpZXMvaW50ZWxfaW1waSIsIi9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsIi9zY3JhdGNoMS9OQ0VQREVWL25lbXMvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable013_;' '_ModuleTable_Sz_="13";' export '_ModuleTable_Sz_;' +++ echo '' + +++ echo Currently Loaded Modules: +Currently Loaded Modules: +++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '7)' ip/3.0.2 '' '' '' '' '' '13)' g2tmpl/1.5.1 '' '' '' '19)' esmf/8.0.0 + 1) contrib 7) ip/3.0.2 13) g2tmpl/1.5.1 19) esmf/8.0.0 +++ echo '' '' '2)' sutils/default '' '' '' '' '8)' nemsio/2.2.4 '' '14)' crtm/2.2.6 '' '' '' '' '' '20)' cmake/3.9.0 + 2) sutils/default 8) nemsio/2.2.4 14) crtm/2.2.6 20) cmake/3.9.0 +++ echo '' '' '3)' intel/18.0.5.274 '' '' '9)' sp/2.0.3 '' '' '' '' '' '15)' jasper/1.900.1 '' '21)' fv3 + 3) intel/18.0.5.274 9) sp/2.0.3 15) jasper/1.900.1 21) fv3 +++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '10)' w3emc/2.3.1 '' '' '16)' png/1.2.44 + 4) impi/2018.0.4 10) w3emc/2.3.1 16) png/1.2.44 +++ echo '' '' '5)' netcdf/4.7.0 '' '' '' '' '' '11)' w3nco/2.0.7 '' '' '17)' z/1.2.11 + 5) netcdf/4.7.0 11) w3nco/2.0.7 17) z/1.2.11 +++ echo '' '' '6)' bacio/2.0.3 '' '' '' '' '' '' '12)' g2/3.1.1 '' '' '' '' '' '18)' post/8.0.0 + 6) bacio/2.0.3 12) g2/3.1.1 18) post/8.0.0 +++ echo '' + +++ echo '' '' + +++ echo '' + +++ MODULEPATH=/contrib/modulefiles:/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs +++ export _ModuleTable001_ +++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy +++ export _ModuleTable002_ +++ _ModuleTable003_=Il09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMS9OQ0VQREVWL25lbXMvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMCIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjAiLH0sZnYzPXtbImZuIl09Ii9zY3JhdGNoMS9CTUMvZ210Yi9Eb20uSGVpbnplbGxlci9ORU1TZnYzZ2ZzL3Vmcy13ZWF0aGVyLW1vZGVsX3Vmc19wdWJsaWNfcmVsZWFzZV91cGRhdGVfMjAxOTEy +++ export _ModuleTable003_ +++ _ModuleTable004_=MTAvdWZzLXdlYXRoZXItbW9kZWxfcHVibGljLXJlbGVhc2VfdXBkYXRlLWZyb20tZHRjLWRldmVsb3AtMjAxOTEyMDkvcnQvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbC9mdjMiLFsiZnVsbE5hbWUiXT0iZnYzIixbImxvYWRPcmRlciJdPTIxLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTAsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImZ2MyIsfSxnMj17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvZzIvMy4xLjEiLFsiZnVsbE5hbWUiXT0iZzIvMy4xLjEiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzIvMy4xLjEiLH0s +++ export _ModuleTable004_ +++ _ModuleTable005_=ZzJ0bXBsPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMnRtcGwvMS41LjEiLFsiZnVsbE5hbWUiXT0iZzJ0bXBsLzEuNS4xIixbImxvYWRPcmRlciJdPTEzLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcydG1wbC8xLjUuMSIsfSxpbXBpPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwvaW1waS8yMDE4LjAuNCIsWyJmdWxsTmFtZSJdPSJpbXBpLzIwMTguMC40IixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8yMDE4LjAuNCIsfSxp +++ export _ModuleTable005_ +++ _ModuleTable006_=bnRlbD17WyJmbiJdPSIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL2ludGVsLzE4LjAuNS4yNzQiLFsiZnVsbE5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsWyJsb2FkT3JkZXIiXT0zLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImludGVsLzE4LjAuNS4yNzQiLH0saXA9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTcscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0samFzcGVyPXtbImZuIl09Ii9z +++ export _ModuleTable006_ +++ _ModuleTable007_=Y3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9qYXNwZXIvMS45MDAuMSIsWyJmdWxsTmFtZSJdPSJqYXNwZXIvMS45MDAuMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMSIsfSxuZW1zaW89e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25lbXNpby8yLjIuNCIsWyJmdWxsTmFtZSJdPSJuZW1zaW8vMi4yLjQiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuZW1zaW8vMi4yLjQiLH0sbmV0 +++ export _ModuleTable007_ +++ _ModuleTable008_=Y2RmPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwvbmV0Y2RmLzQuNy4wIixbImZ1bGxOYW1lIl09Im5ldGNkZi80LjcuMCIsWyJsb2FkT3JkZXIiXT01LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZi80LjcuMCIsfSxwbmc9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3BuZy8xLjIuNDQiLFsiZnVsbE5hbWUiXT0icG5nLzEuMi40NCIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJwbmcvMS4yLjQ0Iix9LHBvc3Q9e1siZm4iXT0i +++ export _ModuleTable008_ +++ _ModuleTable009_=L3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3Bvc3QvOC4wLjAiLFsiZnVsbE5hbWUiXT0icG9zdC84LjAuMCIsWyJsb2FkT3JkZXIiXT0xOCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJwb3N0LzguMC4wIix9LHNwPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9zcC8yLjAuMyIsWyJmdWxsTmFtZSJdPSJzcC8yLjAuMyIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InNwLzIuMC4zIix9LHN1dGlscz17WyJmbiJdPSIvY29udHJpYi9tb2R1 +++ export _ModuleTable009_ +++ _ModuleTable010_=bGVmaWxlcy9zdXRpbHMvZGVmYXVsdCIsWyJmdWxsTmFtZSJdPSJzdXRpbHMvZGVmYXVsdCIsWyJsb2FkT3JkZXIiXT0yLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InN1dGlscyIsfSx3M2VtYz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09MTAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0idzNlbWMvMi4zLjEiLH0sdzNuY289e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21v +++ export _ModuleTable010_ +++ _ModuleTable011_=ZHVsZWZpbGVzL3czbmNvLzIuMC43IixbImZ1bGxOYW1lIl09InczbmNvLzIuMC43IixbImxvYWRPcmRlciJdPTExLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczbmNvLzIuMC43Iix9LHo9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3ovMS4yLjExIixbImZ1bGxOYW1lIl09InovMS4yLjExIixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InovMS4yLjExIix9LH0sbXBhdGhBPXsiL2NvbnRyaWIvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvQk1DL2dtdGIvRG9tLkhlaW56 +++ export _ModuleTable011_ +++ _ModuleTable012_=ZWxsZXIvTkVNU2Z2M2dmcy91ZnMtd2VhdGhlci1tb2RlbF91ZnNfcHVibGljX3JlbGVhc2VfdXBkYXRlXzIwMTkxMjEwL3Vmcy13ZWF0aGVyLW1vZGVsX3B1YmxpYy1yZWxlYXNlX3VwZGF0ZS1mcm9tLWR0Yy1kZXZlbG9wLTIwMTkxMjA5L3J0L21vZHVsZWZpbGVzL2hlcmEuaW50ZWwiLCIvYXBwcy9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXgiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzIiwiL29wdC9jcmF5L21vZHVsZWZpbGVzIiwiL29wdC9jcmF5L2NyYXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFt +++ export _ModuleTable012_ +++ _ModuleTable013_=aWxpZXMvaW50ZWxfaW1waSIsIi9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsIi9zY3JhdGNoMS9OQ0VQREVWL25lbXMvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= +++ export _ModuleTable013_ +++ _ModuleTable_Sz_=13 +++ export _ModuleTable_Sz_ +++ : -s sh ++ eval ++ cd build_fv3_1 ++ cmake /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt -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 --- The Fortran compiler identification is Intel +-- 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 +-- 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: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/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.6.1/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include;/apps/netcdf/4.6.1/intel/16.1.150/include +ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/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.6.1/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include;/apps/netcdf/4.6.1/intel/16.1.150/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 @@ -2301,3267 +2346,619 @@ Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/scratch1/BMC/gmtb/Dom.Heinze -- 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") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") +-- 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 SCHEMES from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90 +INFOGot CCPP_SCHEMES from environment variable: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/aer_cloud.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/aerclm_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/aerinterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cldmacro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/date_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/funcphys.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gcycle.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/h2o_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/iccn_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/iccninterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/iounitdef.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/machine.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfpbl.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/multi_gases.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfpblt.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfpbltq.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfscu.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfscuq.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/num_parthds.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ozne_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ozinterp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/physcons.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/physparam.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radcons.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_gases.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_surface.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radlw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radsw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/samfaerosols.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfcsub.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sflx.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/set_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/tridi.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/wv_saturation.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radsw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gwdc.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gscond.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_sice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ozphys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/precpd.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_diag.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radlw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cs_conv.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/h2ophys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_nst.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/moninedmf.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_diff.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/m_micro.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gwdps.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/drag_suite.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_cice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cnvc90.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/dcyc2.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/moninshoc.f +INFOGot CAPS from environment variable: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1/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: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". +-- Build files have been written to: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_1 ++ make -j 8 Scanning dependencies of target ccpp -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 5 -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 3 -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 7 -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 6 -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 4 -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields_idx.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_utils.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 2 -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.c -Linking Fortran static library libccpp.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar cr libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -Linking Fortran executable test_check -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_check.dir/test_check.f90.o -o test_check -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/test_fields.dir/test_fields.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_fields.c -Linking C executable test_fields -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -O2 -fPIC -qopenmp -qopenmp CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -Linking Fortran executable test_init_finalize -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". +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 +[ 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_input.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_core.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. +Using 8-byte addressing +Using pure routines. +Using 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 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 +[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o +[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o +[ 2%] Linking Fortran static library libfv3cpl.a Scanning dependencies of target ccppphys -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 17 -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 9 -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 12 -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 37 -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 41 -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 42 -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 49 -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 23 -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 22 -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 25 -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 28 -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 20 -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 33 -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 45 -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 21 -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 92 -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 39 -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 40 -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 38 -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 66 -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 15 -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 16 -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 36 -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 27 -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 44 -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 24 -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 11 -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 19 -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 26 -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 47 -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 48 -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 82 -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 89 -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 91 -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 51 -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 76 -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 72 -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 90 -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 59 -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 58 -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 62 -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 63 -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 70 -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 55 -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 94 -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 77 -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 57 -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 81 -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 56 -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 78 -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 54 -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 93 -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 50 -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 32 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 97 -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 96 -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 95 -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 68 -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 60 -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 79 -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 53 -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 71 -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 65 -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 86 -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 69 -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 88 -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 75 -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 74 -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 64 -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 84 -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 83 -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 87 -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 67 -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 80 -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 73 -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 61 -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 85 -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 52 -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 43 -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 10 -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 13 -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 14 -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 18 -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 29 -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 30 -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 31 -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 32 -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 34 -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 35 -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 46 -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -Linking Fortran static library libccppphys.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccppphys.dir/link.txt --verbose=1 -/usr/bin/ar cr 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_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/mfscu.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/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.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 CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o -/usr/bin/ranlib libccppphys.a -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[2]: Nothing to be done for `preinstall'. -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Bitforbit" --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccpp.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config-bitforbit.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_utils.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_errors.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_strings.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_suite.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_types.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_api.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccppphys.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config-bitforbit.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_stochastics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_fast_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_stochastics_cap.mod -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL on hera -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/configure.fv3 -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/modules.fv3 -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 COMP_BINDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake -C cpl FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -makefile:67: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DOVERLOAD_R4 CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -makefile:54: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -gmake -C io FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.0_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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_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_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +[ 2%] Built target fv3cpl +[ 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%] 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 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 CMakeFiles/fms.dir/FMS/mpp/mpp.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/module_soil_pre.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/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/gfs_phy_tracer_config.F.o +[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.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/set_soilveg.f.o +[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o +[ 4%] 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 +[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o +[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o +[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o +[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o +[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.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 +[ 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/cires_ugwp_post.F90.o +[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o +[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o +[ 8%] 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. +[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.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/GFS_MP_generic.F90.o +[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o +[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o +[ 10%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.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/h2ophys.f.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_2015.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 +[ 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 +[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o +[ 15%] 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/cu_gf_sh.F90.o +[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o +[ 16%] 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 +[ 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 +[ 23%] 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 +[ 24%] 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 +[ 24%] 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 +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/satmedmfvdifq.F.o +[ 25%] 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 +[ 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 +[ 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_v15p2_fast_physics_cap.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/ccpp_FV3_GFS_v16beta_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/drifters/drifters_comm.F90.o +[ 30%] 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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o +Using pure routines. +Using 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/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/GFS_suite_interstitial.F90.o +[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.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/GFS_rrtmg_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_v15p2_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 +[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_stochastics_cap.F90.o +[ 33%] 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_physics_cap.F90.o +[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_radiation_cap.F90.o +[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_radiation_cap.F90.o +[ 34%] 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 +[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o +[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.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_bilinear.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. +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. +[ 38%] 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 +[ 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 +[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o +[ 39%] 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. +[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o +[ 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 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 +[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o +[ 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_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. +[ 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 +[ 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. +[ 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 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 CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o +[ 46%] 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 +[ 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 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. +[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o +[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o +[ 47%] 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 -Converting pointers to allocatable components -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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake esmf_make_fragment FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Installation into "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC" -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; \ -gmake nems REPRO=Y \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL CCPP_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp FV3_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" ; \ -test -x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" -CPPFLAGS += ESMF_VERSION_REVISION="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_MAJOR="8" -CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dom.Heinzeller) Tue Oct 29 11:58:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 11:58:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 11:58:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 11:58:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 11:58:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 11:58:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 11:58:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 11:58:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 11:58:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 11:58:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -mpiifort -o /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cap.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libccppdriver.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3core.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3io.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libipd.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libgfsphys.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cpl.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libstochastic_physics.a -L/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +[ 47%] 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. +[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o +[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o +[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o +[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o +[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o +[ 49%] 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 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 +[ 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 C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.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 C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o +[ 52%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o +[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_cap.F90.o +[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_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 +[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o +[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o +[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o +[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o +[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o +[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.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 +[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o +[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o +[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o +[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o +[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o +[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o +[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o +[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o +[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.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 Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o +[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o +[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o +[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o +[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o +[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o +[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o +[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.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/sfc_cice.f.o +[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o +[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o +[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o +[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.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 +[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o +[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o +[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o +[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o +[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o +[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o +[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o +[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o +[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o +[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o +[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o +[ 64%] 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/mfpblt.f.o +[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o +[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o +[ 65%] 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 +[ 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 +[ 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/namelist_soilveg.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/GFDL_parse_tracers.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/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/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 +[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o +[ 71%] 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/set_soilveg.f.o +[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.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 +[ 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_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/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_netcdf.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/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/io/CMakeFiles/io.dir/FV3GFS_io.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 +[ 79%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o +[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o +[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.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/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. +[ 80%] Linking Fortran static library libio.a +[ 80%] Built target io +[ 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/model/tp_core.F90.o +[ 81%] 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/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/tools/fv_treat_da_inc.F90.o +[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o +[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o +[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o +[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o +[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o +[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o +[ 85%] 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 +[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o +[ 87%] 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 +[ 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. +[ 88%] Linking Fortran static library libfv3core.a +[ 88%] Built target fv3core +Scanning dependencies of target stochastic_physics +[ 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_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_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 +[ 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/setlats_a_stochy.f.o +[ 93%] 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 +[ 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/epslon_stochy.f.o +[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_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/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/cellular_automata.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/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 +[ 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/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_EARTH_INTERNAL_STATE.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/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 +[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' -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_10.exe" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_10.exe +[100%] Built target NEMS.exe ++ mv NEMS.exe ../fv3_1.exe ++ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/modulefiles/hera.intel/fv3 ../modules.fv3_1 ++ cd .. + '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_10 BUILD_ENV=hera.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' NEMS_BUILDOPT=REPRO=Y clean -Will copy modules.nems and NEMS.x as fv3_10 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -+ elapsed=902 -+ echo 'Elapsed time 902 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y finished' -Elapsed time 902 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y finished ++ rm -rf build_fv3_1 ++ elapsed=535 ++ echo 'Elapsed time 535 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta finished' +Elapsed time 535 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta finished + SECONDS=0 ++++ readlink -f ./compile_cmake.sh +++ dirname /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/compile_cmake.sh ++ readonly MYDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests ++ MYDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests ++ readonly ARGC=4 ++ ARGC=4 ++ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests ++ [[ 4 -eq 0 ]] + [[ 4 -lt 2 ]] -+ readonly PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ readonly BUILD_TARGET=hera.intel -+ BUILD_TARGET=hera.intel -+ readonly 'MAKE_OPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' -+ readonly BUILD_NAME=fv3_11 -+ BUILD_NAME=fv3_11 -+ readonly clean_before=YES ++ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt ++ MACHINE_ID=hera.intel ++ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y' ++ BUILD_NAME=fv3_2 + clean_before=YES -+ readonly clean_after=YES + clean_after=YES -+ hostname -hfe06 -+ 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 -+ gnu_make=gmake -+ which gmake -/usr/bin/gmake ++ BUILD_DIR=build_fv3_2 + [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == stampede.* ]] ++ [[ hera.intel == wcoss_dell_p3 ]] + 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ 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* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\W\W\3\=\Y* ]] -+ [[ 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 == *\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* ]] -+ NEMS_BUILDOPT=REPRO=Y ++ hostname +hfe06 ++ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests ++ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y into fv3_2.exe on hera.intel' +Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y into fv3_2.exe on hera.intel + '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_11 BUILD_ENV=hera.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' NEMS_BUILDOPT=REPRO=Y distclean -Will copy modules.nems and NEMS.x as fv3_11 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include" ; \ -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 --clean -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: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test_results.mk -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_11 BUILD_ENV=hera.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' NEMS_BUILDOPT=REPRO=Y build -Will copy modules.nems and NEMS.x as fv3_11 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/modulefiles/hera.intel/fv3 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_11" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_11 -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/conf/configure.fv3.hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh" -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/configure_rules.mk:3: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=12000000 ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ; \ -) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ -exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" all - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL" -mv fms.mk "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh hera.intel "$PATH_CCPP" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk \ - "REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"" NO NO ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/include ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 ++ rm -rf build_fv3_2 ++ mkdir -p build_fv3_2 ++ 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt ++ ./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_2/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 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 @@ -5590,7 +2987,7 @@ INFO: Converting local name evap_land of variable kinematic_surface_upward_laten 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 @@ -5904,6 +3301,7 @@ INFO: Converting local name zorlo of variable surface_roughness_length_over_ocea 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 @@ -6294,7 +3692,7 @@ INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux 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 save_q of variable tracer_concentration_save 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 runoff of variable total_runoff 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 @@ -6465,7 +3863,7 @@ INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from 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 islmsk_cice of variable sea_land_ice_mask_cice 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 @@ -6604,7 +4002,7 @@ INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of var 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 runoff of variable total_runoff 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 @@ -6716,6 +4114,7 @@ INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_ 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 @@ -6763,6 +4162,7 @@ INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ 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 qgrs of variable tracer_concentration 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 con_t0c of variable temperature_at_zero_celsius from new to old metadata @@ -6875,7 +4275,7 @@ INFO: Converting local name restart of variable flag_for_restart from new to old 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html +INFO: Metadata table for model FV3 written to tests/build_fv3_2/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 @@ -6913,8 +4313,7 @@ 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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post +INFO: Parsed tables in scheme zhaocarr_precpd INFO: Parsed tables in scheme noahmpdrv INFO: Parsed tables in scheme myjpbl_wrapper INFO: Parsed tables in scheme GFS_surface_generic_pre @@ -6927,7 +4326,7 @@ 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 zhaocarr_precpd +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 @@ -6943,7 +4342,7 @@ 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_noahmp_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 @@ -6953,6 +4352,7 @@ 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 @@ -6963,7 +4363,6 @@ INFO: Parsed tables in scheme mp_thompson_post 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 gwdps_post INFO: Parsed tables in scheme cires_ugwp INFO: Parsed tables in scheme get_prs_fv3 INFO: Parsed tables in scheme get_phi_fv3 @@ -6973,9 +4372,7 @@ 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 GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post INFO: Parsed tables in scheme sfc_cice INFO: Parsed tables in scheme mynnrad_post INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre @@ -6995,8 +4392,6 @@ INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_cl 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 @@ -7005,36 +4400,27 @@ 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 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_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_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_water_to_rain INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep 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 @@ -7056,16 +4442,10 @@ 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 explicit_rainfall_rate_from_previous_timestep 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 @@ -7073,50 +4453,39 @@ INFO: filtering out variable flag_flux_form_CS INFO: filtering out variable flag_for_aerosol_input_MG 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_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_restart INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics INFO: filtering out variable flag_for_shoc_after_convection 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 graupel_precipitation_rate_from_previous_timestep 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_precipitation_rate_from_previous_timestep 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 @@ -7126,7 +4495,6 @@ 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 @@ -7142,7 +4510,6 @@ 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 maximum_column_heating_rate INFO: filtering out variable maximum_mass_flux INFO: filtering out variable maximum_updraft_velocity_at_cloud_base @@ -7178,30 +4545,20 @@ 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 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_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 @@ -7215,19 +4572,13 @@ 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_precipitation_rate_from_previous_timestep 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_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 @@ -7243,7 +4594,6 @@ 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 @@ -7252,7 +4602,6 @@ 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 @@ -7267,12 +4616,9 @@ INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_mo 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 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 @@ -7281,10 +4627,6 @@ 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 @@ -7296,7 +4638,6 @@ 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 @@ -7312,39 +4653,590 @@ 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex +INFO: Metadata table for model FV3 written to tests/build_fv3_2/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 before entering 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 before entering 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 before entering MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 162 schemes to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.mk, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.sh +INFO: Added 164 schemes to tests/build_fv3_2/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_2/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_2/FV3/ccpp/physics/CCPP_SCHEMES.sh INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics ... +INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_2/FV3/ccpp/physics ... INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 10 auto-generated caps to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.mk and /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.cmake +INFO: Added 12 auto-generated caps to tests/build_fv3_2/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_2/FV3/ccpp/physics/CCPP_CAPS.cmake INFO: CCPP prebuild step completed successfully. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ ./build_ccpp.sh hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk 'REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/lib from /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -DNETCDF_DIR=/apps/netcdf/4.7.0/intel/18.0.5.274 -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DOPENMP=ON -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 18.0.0.20180823 --- The CXX compiler identification is Intel 18.0.0.20180823 ++ source build_fv3_2/FV3/ccpp/physics/CCPP_SCHEMES.sh +++ export 'CCPP_SCHEMES=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/aer_cloud.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/aerclm_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/aerinterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cldmacro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/date_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/funcphys.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gcycle.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/h2o_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/iccn_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/iccninterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/iounitdef.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/machine.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfpbl.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/multi_gases.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfpblt.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfpbltq.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfscu.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfscuq.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/num_parthds.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ozne_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ozinterp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/physcons.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/physparam.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radcons.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_gases.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_surface.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radlw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radsw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/samfaerosols.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfcsub.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sflx.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/set_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/tridi.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/wv_saturation.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radsw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gwdc.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gscond.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_sice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ozphys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/precpd.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_diag.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radlw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cs_conv.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/h2ophys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_nst.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/moninedmf.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_diff.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/m_micro.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gwdps.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/drag_suite.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_cice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cnvc90.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/dcyc2.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/moninshoc.f' +++ CCPP_SCHEMES='/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/aer_cloud.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/aerclm_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/aerinterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cldmacro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/date_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/funcphys.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gcycle.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/h2o_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/iccn_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/iccninterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/iounitdef.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/machine.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfpbl.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/multi_gases.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfpblt.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfpbltq.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfscu.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfscuq.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/num_parthds.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ozne_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ozinterp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/physcons.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/physparam.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radcons.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_gases.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_surface.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radlw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radsw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/samfaerosols.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfcsub.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sflx.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/set_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/tridi.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/wv_saturation.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radsw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gwdc.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gscond.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_sice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ozphys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/precpd.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_diag.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radlw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cs_conv.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/h2ophys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_nst.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/moninedmf.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_diff.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/m_micro.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gwdps.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/drag_suite.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_cice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cnvc90.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/dcyc2.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/moninshoc.f' ++ source build_fv3_2/FV3/ccpp/physics/CCPP_CAPS.sh +++ export 'CCPP_CAPS=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_stochastics_cap.F90' +++ CCPP_CAPS='/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_stochastics_cap.F90' ++ source build_fv3_2/FV3/ccpp/physics/CCPP_STATIC_API.sh +++ export CCPP_STATIC_API=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_static_api.F90 +++ CCPP_STATIC_API=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/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* ]] +++ 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/NEMS/src/conf/module-setup.sh.inc +++ __ms_function_name=setup__test_function__264538 +++ eval 'setup__test_function__264538() { /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__264538 | 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 '__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="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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 '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/home/Dom.Heinzeller/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";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/home/Dom.Heinzeller/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";' 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_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMS9CTUMvZ210Yi9Eb20uSGVpbnplbGxlci9ORU1TZnYzZ2ZzL3Vmcy13ZWF0aGVyLW1vZGVsX3Vmc19wdWJsaWNfcmVsZWFzZV91cGRhdGVfMjAxOTEyMTAvdWZzLXdlYXRoZXItbW9kZWxfcHVibGljLXJlbGVhc2VfdXBkYXRlLWZyb20tZHRjLWRldmVsb3AtMjAxOTEyMDkvcnQvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVs";' export '_ModuleTable001_;' '_ModuleTable002_="ZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' 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 __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='/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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 __LMOD_REF_COUNT_NLSPATH ++++ unset NLSPATH ++++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/home/Dom.Heinzeller/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' ++++ export __LMOD_REF_COUNT_PATH ++++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/home/Dom.Heinzeller/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 ++++ 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_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMS9CTUMvZ210Yi9Eb20uSGVpbnplbGxlci9ORU1TZnYzZ2ZzL3Vmcy13ZWF0aGVyLW1vZGVsX3Vmc19wdWJsaWNfcmVsZWFzZV91cGRhdGVfMjAxOTEyMTAvdWZzLXdlYXRoZXItbW9kZWxfcHVibGljLXJlbGVhc2VfdXBkYXRlLWZyb20tZHRjLWRldmVsb3AtMjAxOTEyMDkvcnQvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVs ++++ export _ModuleTable001_ ++++ _ModuleTable002_=ZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= ++++ 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__264538 +++ unset __ms_function_name ++ [[ hera.intel == macosx.* ]] ++ [[ hera.intel == linux.* ]] ++ module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/modulefiles/hera.intel +++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/modulefiles/hera.intel ++ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMS9CTUMvZ210Yi9Eb20uSGVpbnplbGxlci9ORU1TZnYzZ2ZzL3Vmcy13ZWF0aGVyLW1vZGVsX3Vmc19wdWJsaWNfcmVsZWFzZV91cGRhdGVfMjAxOTEyMTAvdWZzLXdlYXRoZXItbW9kZWxfcHVibGljLXJlbGVhc2VfdXBkYXRlLWZyb20tZHRjLWRldmVsb3AtMjAxOTEyMDkvcnQvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVs";' export '_ModuleTable001_;' '_ModuleTable002_="ZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' +++ __LMOD_REF_COUNT_MODULEPATH='/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMS9CTUMvZ210Yi9Eb20uSGVpbnplbGxlci9ORU1TZnYzZ2ZzL3Vmcy13ZWF0aGVyLW1vZGVsX3Vmc19wdWJsaWNfcmVsZWFzZV91cGRhdGVfMjAxOTEyMTAvdWZzLXdlYXRoZXItbW9kZWxfcHVibGljLXJlbGVhc2VfdXBkYXRlLWZyb20tZHRjLWRldmVsb3AtMjAxOTEyMDkvcnQvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVs +++ export _ModuleTable001_ +++ _ModuleTable002_=ZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= +++ 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="/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.5.1";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.5.1.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.5.1";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.5.1";' 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;' '__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="/apps/netcdf/4.7.0/intel/18.0.5.274/lib:1;/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="/apps/netcdf/4.7.0/intel/18.0.5.274/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;netcdf/4.7.0: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.5.1:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.0:1;esmf/8.0.0: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:netcdf/4.7.0: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.5.1:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.0:esmf/8.0.0:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/netcdf/4.7.0/intel/18.0.5.274/share/man:1;/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="/apps/netcdf/4.7.0/intel/18.0.5.274/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;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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:/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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="/apps/netcdf/4.7.0/intel/18.0.5.274";' export 'NETCDF;' '__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;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/bin:1;/apps/netcdf/4.7.0/intel/18.0.5.274/bin:1;/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;/home/Dom.Heinzeller/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";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/bin:/apps/netcdf/4.7.0/intel/18.0.5.274/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:/home/Dom.Heinzeller/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";' 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.0_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.0_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.0";' export 'POST_SRC;' 'POST_VER="v8.0.0";' 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;/apps/modules/modulefamilies/intel/netcdf/4.7.0: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.5.1: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.0:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles/esmf/8.0.0:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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:/apps/modules/modulefamilies/intel/netcdf/4.7.0:/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.5.1:/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.0:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles/esmf/8.0.0:/contrib/modulefiles/cmake/3.9.0:/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMS9OQ0VQREVWL25lbXMvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMCIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjAiLH0sZnYzPXtbImZuIl09Ii9zY3JhdGNoMS9CTUMvZ210Yi9Eb20uSGVpbnplbGxlci9ORU1TZnYzZ2ZzL3Vmcy13ZWF0aGVyLW1vZGVsX3Vmc19wdWJsaWNfcmVsZWFzZV91cGRhdGVfMjAxOTEy";' export '_ModuleTable003_;' '_ModuleTable004_="MTAvdWZzLXdlYXRoZXItbW9kZWxfcHVibGljLXJlbGVhc2VfdXBkYXRlLWZyb20tZHRjLWRldmVsb3AtMjAxOTEyMDkvcnQvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbC9mdjMiLFsiZnVsbE5hbWUiXT0iZnYzIixbImxvYWRPcmRlciJdPTIxLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTAsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImZ2MyIsfSxnMj17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvZzIvMy4xLjEiLFsiZnVsbE5hbWUiXT0iZzIvMy4xLjEiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzIvMy4xLjEiLH0s";' export '_ModuleTable004_;' '_ModuleTable005_="ZzJ0bXBsPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMnRtcGwvMS41LjEiLFsiZnVsbE5hbWUiXT0iZzJ0bXBsLzEuNS4xIixbImxvYWRPcmRlciJdPTEzLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcydG1wbC8xLjUuMSIsfSxpbXBpPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwvaW1waS8yMDE4LjAuNCIsWyJmdWxsTmFtZSJdPSJpbXBpLzIwMTguMC40IixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8yMDE4LjAuNCIsfSxp";' export '_ModuleTable005_;' '_ModuleTable006_="bnRlbD17WyJmbiJdPSIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL2ludGVsLzE4LjAuNS4yNzQiLFsiZnVsbE5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsWyJsb2FkT3JkZXIiXT0zLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImludGVsLzE4LjAuNS4yNzQiLH0saXA9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTcscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0samFzcGVyPXtbImZuIl09Ii9z";' export '_ModuleTable006_;' '_ModuleTable007_="Y3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9qYXNwZXIvMS45MDAuMSIsWyJmdWxsTmFtZSJdPSJqYXNwZXIvMS45MDAuMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMSIsfSxuZW1zaW89e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25lbXNpby8yLjIuNCIsWyJmdWxsTmFtZSJdPSJuZW1zaW8vMi4yLjQiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuZW1zaW8vMi4yLjQiLH0sbmV0";' export '_ModuleTable007_;' '_ModuleTable008_="Y2RmPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwvbmV0Y2RmLzQuNy4wIixbImZ1bGxOYW1lIl09Im5ldGNkZi80LjcuMCIsWyJsb2FkT3JkZXIiXT01LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZi80LjcuMCIsfSxwbmc9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3BuZy8xLjIuNDQiLFsiZnVsbE5hbWUiXT0icG5nLzEuMi40NCIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJwbmcvMS4yLjQ0Iix9LHBvc3Q9e1siZm4iXT0i";' export '_ModuleTable008_;' '_ModuleTable009_="L3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3Bvc3QvOC4wLjAiLFsiZnVsbE5hbWUiXT0icG9zdC84LjAuMCIsWyJsb2FkT3JkZXIiXT0xOCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJwb3N0LzguMC4wIix9LHNwPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9zcC8yLjAuMyIsWyJmdWxsTmFtZSJdPSJzcC8yLjAuMyIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InNwLzIuMC4zIix9LHN1dGlscz17WyJmbiJdPSIvY29udHJpYi9tb2R1";' export '_ModuleTable009_;' '_ModuleTable010_="bGVmaWxlcy9zdXRpbHMvZGVmYXVsdCIsWyJmdWxsTmFtZSJdPSJzdXRpbHMvZGVmYXVsdCIsWyJsb2FkT3JkZXIiXT0yLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InN1dGlscyIsfSx3M2VtYz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09MTAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0idzNlbWMvMi4zLjEiLH0sdzNuY289e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21v";' export '_ModuleTable010_;' '_ModuleTable011_="ZHVsZWZpbGVzL3czbmNvLzIuMC43IixbImZ1bGxOYW1lIl09InczbmNvLzIuMC43IixbImxvYWRPcmRlciJdPTExLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczbmNvLzIuMC43Iix9LHo9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3ovMS4yLjExIixbImZ1bGxOYW1lIl09InovMS4yLjExIixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InovMS4yLjExIix9LH0sbXBhdGhBPXsiL2NvbnRyaWIvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvQk1DL2dtdGIvRG9tLkhlaW56";' export '_ModuleTable011_;' '_ModuleTable012_="ZWxsZXIvTkVNU2Z2M2dmcy91ZnMtd2VhdGhlci1tb2RlbF91ZnNfcHVibGljX3JlbGVhc2VfdXBkYXRlXzIwMTkxMjEwL3Vmcy13ZWF0aGVyLW1vZGVsX3B1YmxpYy1yZWxlYXNlX3VwZGF0ZS1mcm9tLWR0Yy1kZXZlbG9wLTIwMTkxMjA5L3J0L21vZHVsZWZpbGVzL2hlcmEuaW50ZWwiLCIvYXBwcy9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXgiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzIiwiL29wdC9jcmF5L21vZHVsZWZpbGVzIiwiL29wdC9jcmF5L2NyYXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFt";' export '_ModuleTable012_;' '_ModuleTable013_="aWxpZXMvaW50ZWxfaW1waSIsIi9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsIi9zY3JhdGNoMS9OQ0VQREVWL25lbXMvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable013_;' '_ModuleTable_Sz_="13";' 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=/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib/esmf.mk +++ export ESMFMKFILE +++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.5.1 +++ export G2TMPL_INC +++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.5.1.a +++ export G2TMPL_LIB +++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.5.1 +++ export G2TMPL_SRC +++ G2TMPL_VER=v1.5.1 +++ 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 +++ __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='/apps/netcdf/4.7.0/intel/18.0.5.274/lib:1;/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=/apps/netcdf/4.7.0/intel/18.0.5.274/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;netcdf/4.7.0: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.5.1:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.0:1;esmf/8.0.0: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:netcdf/4.7.0: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.5.1:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.0:esmf/8.0.0:cmake/3.9.0:fv3 +++ export LOADEDMODULES +++ __LMOD_REF_COUNT_MANPATH='/apps/netcdf/4.7.0/intel/18.0.5.274/share/man:1;/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=/apps/netcdf/4.7.0/intel/18.0.5.274/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;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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:/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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=/apps/netcdf/4.7.0/intel/18.0.5.274 +++ export NETCDF +++ __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;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/bin:1;/apps/netcdf/4.7.0/intel/18.0.5.274/bin:1;/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;/home/Dom.Heinzeller/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' +++ export __LMOD_REF_COUNT_PATH +++ PATH=/contrib/cmake/3.9.0/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/bin:/apps/netcdf/4.7.0/intel/18.0.5.274/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:/home/Dom.Heinzeller/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 +++ 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.0_4 +++ export POST_INC +++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.0_4.a +++ export POST_LIB +++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.0 +++ export POST_SRC +++ POST_VER=v8.0.0 +++ 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;/apps/modules/modulefamilies/intel/netcdf/4.7.0: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.5.1: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.0:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles/esmf/8.0.0:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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:/apps/modules/modulefamilies/intel/netcdf/4.7.0:/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.5.1:/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.0:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles/esmf/8.0.0:/contrib/modulefiles/cmake/3.9.0:/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/modulefiles/hera.intel/fv3 +++ export _LMFILES_ +++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs +++ export _ModuleTable001_ +++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy +++ export _ModuleTable002_ +++ _ModuleTable003_=Il09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMS9OQ0VQREVWL25lbXMvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMCIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjAiLH0sZnYzPXtbImZuIl09Ii9zY3JhdGNoMS9CTUMvZ210Yi9Eb20uSGVpbnplbGxlci9ORU1TZnYzZ2ZzL3Vmcy13ZWF0aGVyLW1vZGVsX3Vmc19wdWJsaWNfcmVsZWFzZV91cGRhdGVfMjAxOTEy +++ export _ModuleTable003_ +++ _ModuleTable004_=MTAvdWZzLXdlYXRoZXItbW9kZWxfcHVibGljLXJlbGVhc2VfdXBkYXRlLWZyb20tZHRjLWRldmVsb3AtMjAxOTEyMDkvcnQvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbC9mdjMiLFsiZnVsbE5hbWUiXT0iZnYzIixbImxvYWRPcmRlciJdPTIxLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTAsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImZ2MyIsfSxnMj17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvZzIvMy4xLjEiLFsiZnVsbE5hbWUiXT0iZzIvMy4xLjEiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzIvMy4xLjEiLH0s +++ export _ModuleTable004_ +++ _ModuleTable005_=ZzJ0bXBsPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMnRtcGwvMS41LjEiLFsiZnVsbE5hbWUiXT0iZzJ0bXBsLzEuNS4xIixbImxvYWRPcmRlciJdPTEzLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcydG1wbC8xLjUuMSIsfSxpbXBpPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwvaW1waS8yMDE4LjAuNCIsWyJmdWxsTmFtZSJdPSJpbXBpLzIwMTguMC40IixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8yMDE4LjAuNCIsfSxp +++ export _ModuleTable005_ +++ _ModuleTable006_=bnRlbD17WyJmbiJdPSIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL2ludGVsLzE4LjAuNS4yNzQiLFsiZnVsbE5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsWyJsb2FkT3JkZXIiXT0zLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImludGVsLzE4LjAuNS4yNzQiLH0saXA9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTcscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0samFzcGVyPXtbImZuIl09Ii9z +++ export _ModuleTable006_ +++ _ModuleTable007_=Y3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9qYXNwZXIvMS45MDAuMSIsWyJmdWxsTmFtZSJdPSJqYXNwZXIvMS45MDAuMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMSIsfSxuZW1zaW89e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25lbXNpby8yLjIuNCIsWyJmdWxsTmFtZSJdPSJuZW1zaW8vMi4yLjQiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuZW1zaW8vMi4yLjQiLH0sbmV0 +++ export _ModuleTable007_ +++ _ModuleTable008_=Y2RmPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwvbmV0Y2RmLzQuNy4wIixbImZ1bGxOYW1lIl09Im5ldGNkZi80LjcuMCIsWyJsb2FkT3JkZXIiXT01LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZi80LjcuMCIsfSxwbmc9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3BuZy8xLjIuNDQiLFsiZnVsbE5hbWUiXT0icG5nLzEuMi40NCIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJwbmcvMS4yLjQ0Iix9LHBvc3Q9e1siZm4iXT0i +++ export _ModuleTable008_ +++ _ModuleTable009_=L3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3Bvc3QvOC4wLjAiLFsiZnVsbE5hbWUiXT0icG9zdC84LjAuMCIsWyJsb2FkT3JkZXIiXT0xOCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJwb3N0LzguMC4wIix9LHNwPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9zcC8yLjAuMyIsWyJmdWxsTmFtZSJdPSJzcC8yLjAuMyIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InNwLzIuMC4zIix9LHN1dGlscz17WyJmbiJdPSIvY29udHJpYi9tb2R1 +++ export _ModuleTable009_ +++ _ModuleTable010_=bGVmaWxlcy9zdXRpbHMvZGVmYXVsdCIsWyJmdWxsTmFtZSJdPSJzdXRpbHMvZGVmYXVsdCIsWyJsb2FkT3JkZXIiXT0yLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InN1dGlscyIsfSx3M2VtYz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09MTAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0idzNlbWMvMi4zLjEiLH0sdzNuY289e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21v +++ export _ModuleTable010_ +++ _ModuleTable011_=ZHVsZWZpbGVzL3czbmNvLzIuMC43IixbImZ1bGxOYW1lIl09InczbmNvLzIuMC43IixbImxvYWRPcmRlciJdPTExLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczbmNvLzIuMC43Iix9LHo9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3ovMS4yLjExIixbImZ1bGxOYW1lIl09InovMS4yLjExIixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InovMS4yLjExIix9LH0sbXBhdGhBPXsiL2NvbnRyaWIvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvQk1DL2dtdGIvRG9tLkhlaW56 +++ export _ModuleTable011_ +++ _ModuleTable012_=ZWxsZXIvTkVNU2Z2M2dmcy91ZnMtd2VhdGhlci1tb2RlbF91ZnNfcHVibGljX3JlbGVhc2VfdXBkYXRlXzIwMTkxMjEwL3Vmcy13ZWF0aGVyLW1vZGVsX3B1YmxpYy1yZWxlYXNlX3VwZGF0ZS1mcm9tLWR0Yy1kZXZlbG9wLTIwMTkxMjA5L3J0L21vZHVsZWZpbGVzL2hlcmEuaW50ZWwiLCIvYXBwcy9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXgiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzIiwiL29wdC9jcmF5L21vZHVsZWZpbGVzIiwiL29wdC9jcmF5L2NyYXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFt +++ export _ModuleTable012_ +++ _ModuleTable013_=aWxpZXMvaW50ZWxfaW1waSIsIi9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsIi9zY3JhdGNoMS9OQ0VQREVWL25lbXMvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= +++ export _ModuleTable013_ +++ _ModuleTable_Sz_=13 +++ 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'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''g2tmpl/1.5.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''esmf/8.0.0'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\''14)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''21)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''netcdf/4.7.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''11)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''z/1.2.11'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''post/8.0.0'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMS9OQ0VQREVWL25lbXMvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMCIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjAiLH0sZnYzPXtbImZuIl09Ii9zY3JhdGNoMS9CTUMvZ210Yi9Eb20uSGVpbnplbGxlci9ORU1TZnYzZ2ZzL3Vmcy13ZWF0aGVyLW1vZGVsX3Vmc19wdWJsaWNfcmVsZWFzZV91cGRhdGVfMjAxOTEy";' export '_ModuleTable003_;' '_ModuleTable004_="MTAvdWZzLXdlYXRoZXItbW9kZWxfcHVibGljLXJlbGVhc2VfdXBkYXRlLWZyb20tZHRjLWRldmVsb3AtMjAxOTEyMDkvcnQvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbC9mdjMiLFsiZnVsbE5hbWUiXT0iZnYzIixbImxvYWRPcmRlciJdPTIxLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTAsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImZ2MyIsfSxnMj17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvZzIvMy4xLjEiLFsiZnVsbE5hbWUiXT0iZzIvMy4xLjEiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzIvMy4xLjEiLH0s";' export '_ModuleTable004_;' '_ModuleTable005_="ZzJ0bXBsPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMnRtcGwvMS41LjEiLFsiZnVsbE5hbWUiXT0iZzJ0bXBsLzEuNS4xIixbImxvYWRPcmRlciJdPTEzLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcydG1wbC8xLjUuMSIsfSxpbXBpPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwvaW1waS8yMDE4LjAuNCIsWyJmdWxsTmFtZSJdPSJpbXBpLzIwMTguMC40IixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8yMDE4LjAuNCIsfSxp";' export '_ModuleTable005_;' '_ModuleTable006_="bnRlbD17WyJmbiJdPSIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL2ludGVsLzE4LjAuNS4yNzQiLFsiZnVsbE5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsWyJsb2FkT3JkZXIiXT0zLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImludGVsLzE4LjAuNS4yNzQiLH0saXA9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTcscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0samFzcGVyPXtbImZuIl09Ii9z";' export '_ModuleTable006_;' '_ModuleTable007_="Y3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9qYXNwZXIvMS45MDAuMSIsWyJmdWxsTmFtZSJdPSJqYXNwZXIvMS45MDAuMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMSIsfSxuZW1zaW89e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25lbXNpby8yLjIuNCIsWyJmdWxsTmFtZSJdPSJuZW1zaW8vMi4yLjQiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuZW1zaW8vMi4yLjQiLH0sbmV0";' export '_ModuleTable007_;' '_ModuleTable008_="Y2RmPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwvbmV0Y2RmLzQuNy4wIixbImZ1bGxOYW1lIl09Im5ldGNkZi80LjcuMCIsWyJsb2FkT3JkZXIiXT01LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZi80LjcuMCIsfSxwbmc9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3BuZy8xLjIuNDQiLFsiZnVsbE5hbWUiXT0icG5nLzEuMi40NCIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJwbmcvMS4yLjQ0Iix9LHBvc3Q9e1siZm4iXT0i";' export '_ModuleTable008_;' '_ModuleTable009_="L3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3Bvc3QvOC4wLjAiLFsiZnVsbE5hbWUiXT0icG9zdC84LjAuMCIsWyJsb2FkT3JkZXIiXT0xOCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJwb3N0LzguMC4wIix9LHNwPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9zcC8yLjAuMyIsWyJmdWxsTmFtZSJdPSJzcC8yLjAuMyIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InNwLzIuMC4zIix9LHN1dGlscz17WyJmbiJdPSIvY29udHJpYi9tb2R1";' export '_ModuleTable009_;' '_ModuleTable010_="bGVmaWxlcy9zdXRpbHMvZGVmYXVsdCIsWyJmdWxsTmFtZSJdPSJzdXRpbHMvZGVmYXVsdCIsWyJsb2FkT3JkZXIiXT0yLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InN1dGlscyIsfSx3M2VtYz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09MTAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0idzNlbWMvMi4zLjEiLH0sdzNuY289e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21v";' export '_ModuleTable010_;' '_ModuleTable011_="ZHVsZWZpbGVzL3czbmNvLzIuMC43IixbImZ1bGxOYW1lIl09InczbmNvLzIuMC43IixbImxvYWRPcmRlciJdPTExLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczbmNvLzIuMC43Iix9LHo9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3ovMS4yLjExIixbImZ1bGxOYW1lIl09InovMS4yLjExIixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InovMS4yLjExIix9LH0sbXBhdGhBPXsiL2NvbnRyaWIvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvQk1DL2dtdGIvRG9tLkhlaW56";' export '_ModuleTable011_;' '_ModuleTable012_="ZWxsZXIvTkVNU2Z2M2dmcy91ZnMtd2VhdGhlci1tb2RlbF91ZnNfcHVibGljX3JlbGVhc2VfdXBkYXRlXzIwMTkxMjEwL3Vmcy13ZWF0aGVyLW1vZGVsX3B1YmxpYy1yZWxlYXNlX3VwZGF0ZS1mcm9tLWR0Yy1kZXZlbG9wLTIwMTkxMjA5L3J0L21vZHVsZWZpbGVzL2hlcmEuaW50ZWwiLCIvYXBwcy9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXgiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzIiwiL29wdC9jcmF5L21vZHVsZWZpbGVzIiwiL29wdC9jcmF5L2NyYXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFt";' export '_ModuleTable012_;' '_ModuleTable013_="aWxpZXMvaW50ZWxfaW1waSIsIi9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsIi9zY3JhdGNoMS9OQ0VQREVWL25lbXMvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable013_;' '_ModuleTable_Sz_="13";' export '_ModuleTable_Sz_;' +++ echo '' + +++ echo Currently Loaded Modules: +Currently Loaded Modules: +++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '7)' ip/3.0.2 '' '' '' '' '' '13)' g2tmpl/1.5.1 '' '' '' '19)' esmf/8.0.0 + 1) contrib 7) ip/3.0.2 13) g2tmpl/1.5.1 19) esmf/8.0.0 +++ echo '' '' '2)' sutils/default '' '' '' '' '8)' nemsio/2.2.4 '' '14)' crtm/2.2.6 '' '' '' '' '' '20)' cmake/3.9.0 + 2) sutils/default 8) nemsio/2.2.4 14) crtm/2.2.6 20) cmake/3.9.0 +++ echo '' '' '3)' intel/18.0.5.274 '' '' '9)' sp/2.0.3 '' '' '' '' '' '15)' jasper/1.900.1 '' '21)' fv3 + 3) intel/18.0.5.274 9) sp/2.0.3 15) jasper/1.900.1 21) fv3 +++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '10)' w3emc/2.3.1 '' '' '16)' png/1.2.44 + 4) impi/2018.0.4 10) w3emc/2.3.1 16) png/1.2.44 +++ echo '' '' '5)' netcdf/4.7.0 '' '' '' '' '' '11)' w3nco/2.0.7 '' '' '17)' z/1.2.11 + 5) netcdf/4.7.0 11) w3nco/2.0.7 17) z/1.2.11 +++ echo '' '' '6)' bacio/2.0.3 '' '' '' '' '' '' '12)' g2/3.1.1 '' '' '' '' '' '18)' post/8.0.0 + 6) bacio/2.0.3 12) g2/3.1.1 18) post/8.0.0 +++ echo '' + +++ echo '' '' + +++ echo '' + +++ MODULEPATH=/contrib/modulefiles:/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/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_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs +++ export _ModuleTable001_ +++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy +++ export _ModuleTable002_ +++ _ModuleTable003_=Il09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMS9OQ0VQREVWL25lbXMvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMCIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjAiLH0sZnYzPXtbImZuIl09Ii9zY3JhdGNoMS9CTUMvZ210Yi9Eb20uSGVpbnplbGxlci9ORU1TZnYzZ2ZzL3Vmcy13ZWF0aGVyLW1vZGVsX3Vmc19wdWJsaWNfcmVsZWFzZV91cGRhdGVfMjAxOTEy +++ export _ModuleTable003_ +++ _ModuleTable004_=MTAvdWZzLXdlYXRoZXItbW9kZWxfcHVibGljLXJlbGVhc2VfdXBkYXRlLWZyb20tZHRjLWRldmVsb3AtMjAxOTEyMDkvcnQvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbC9mdjMiLFsiZnVsbE5hbWUiXT0iZnYzIixbImxvYWRPcmRlciJdPTIxLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTAsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImZ2MyIsfSxnMj17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvZzIvMy4xLjEiLFsiZnVsbE5hbWUiXT0iZzIvMy4xLjEiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzIvMy4xLjEiLH0s +++ export _ModuleTable004_ +++ _ModuleTable005_=ZzJ0bXBsPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMnRtcGwvMS41LjEiLFsiZnVsbE5hbWUiXT0iZzJ0bXBsLzEuNS4xIixbImxvYWRPcmRlciJdPTEzLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcydG1wbC8xLjUuMSIsfSxpbXBpPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwvaW1waS8yMDE4LjAuNCIsWyJmdWxsTmFtZSJdPSJpbXBpLzIwMTguMC40IixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8yMDE4LjAuNCIsfSxp +++ export _ModuleTable005_ +++ _ModuleTable006_=bnRlbD17WyJmbiJdPSIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL2ludGVsLzE4LjAuNS4yNzQiLFsiZnVsbE5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsWyJsb2FkT3JkZXIiXT0zLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImludGVsLzE4LjAuNS4yNzQiLH0saXA9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTcscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0samFzcGVyPXtbImZuIl09Ii9z +++ export _ModuleTable006_ +++ _ModuleTable007_=Y3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9qYXNwZXIvMS45MDAuMSIsWyJmdWxsTmFtZSJdPSJqYXNwZXIvMS45MDAuMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMSIsfSxuZW1zaW89e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25lbXNpby8yLjIuNCIsWyJmdWxsTmFtZSJdPSJuZW1zaW8vMi4yLjQiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJuZW1zaW8vMi4yLjQiLH0sbmV0 +++ export _ModuleTable007_ +++ _ModuleTable008_=Y2RmPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwvbmV0Y2RmLzQuNy4wIixbImZ1bGxOYW1lIl09Im5ldGNkZi80LjcuMCIsWyJsb2FkT3JkZXIiXT01LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZi80LjcuMCIsfSxwbmc9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3BuZy8xLjIuNDQiLFsiZnVsbE5hbWUiXT0icG5nLzEuMi40NCIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJwbmcvMS4yLjQ0Iix9LHBvc3Q9e1siZm4iXT0i +++ export _ModuleTable008_ +++ _ModuleTable009_=L3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3Bvc3QvOC4wLjAiLFsiZnVsbE5hbWUiXT0icG9zdC84LjAuMCIsWyJsb2FkT3JkZXIiXT0xOCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJwb3N0LzguMC4wIix9LHNwPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9zcC8yLjAuMyIsWyJmdWxsTmFtZSJdPSJzcC8yLjAuMyIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InNwLzIuMC4zIix9LHN1dGlscz17WyJmbiJdPSIvY29udHJpYi9tb2R1 +++ export _ModuleTable009_ +++ _ModuleTable010_=bGVmaWxlcy9zdXRpbHMvZGVmYXVsdCIsWyJmdWxsTmFtZSJdPSJzdXRpbHMvZGVmYXVsdCIsWyJsb2FkT3JkZXIiXT0yLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InN1dGlscyIsfSx3M2VtYz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09MTAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0idzNlbWMvMi4zLjEiLH0sdzNuY289e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21v +++ export _ModuleTable010_ +++ _ModuleTable011_=ZHVsZWZpbGVzL3czbmNvLzIuMC43IixbImZ1bGxOYW1lIl09InczbmNvLzIuMC43IixbImxvYWRPcmRlciJdPTExLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczbmNvLzIuMC43Iix9LHo9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3ovMS4yLjExIixbImZ1bGxOYW1lIl09InovMS4yLjExIixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InovMS4yLjExIix9LH0sbXBhdGhBPXsiL2NvbnRyaWIvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvQk1DL2dtdGIvRG9tLkhlaW56 +++ export _ModuleTable011_ +++ _ModuleTable012_=ZWxsZXIvTkVNU2Z2M2dmcy91ZnMtd2VhdGhlci1tb2RlbF91ZnNfcHVibGljX3JlbGVhc2VfdXBkYXRlXzIwMTkxMjEwL3Vmcy13ZWF0aGVyLW1vZGVsX3B1YmxpYy1yZWxlYXNlX3VwZGF0ZS1mcm9tLWR0Yy1kZXZlbG9wLTIwMTkxMjA5L3J0L21vZHVsZWZpbGVzL2hlcmEuaW50ZWwiLCIvYXBwcy9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXgiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzIiwiL29wdC9jcmF5L21vZHVsZWZpbGVzIiwiL29wdC9jcmF5L2NyYXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFt +++ export _ModuleTable012_ +++ _ModuleTable013_=aWxpZXMvaW50ZWxfaW1waSIsIi9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsIi9zY3JhdGNoMS9OQ0VQREVWL25lbXMvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= +++ export _ModuleTable013_ +++ _ModuleTable_Sz_=13 +++ export _ModuleTable_Sz_ +++ : -s sh ++ eval ++ cd build_fv3_2 ++ cmake /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt -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 --- The Fortran compiler identification is Intel +-- 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 +-- 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: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/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.6.1/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include;/apps/netcdf/4.6.1/intel/16.1.150/include +ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/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.6.1/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include;/apps/netcdf/4.6.1/intel/16.1.150/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 @@ -7359,83126 +5251,596 @@ Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/scratch1/BMC/gmtb/Dom.Heinze -- 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") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") +-- 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 SCHEMES from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90 +INFOGot CCPP_SCHEMES from environment variable: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/aer_cloud.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/aerclm_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/aerinterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cldmacro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/date_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/funcphys.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gcycle.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/h2o_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/iccn_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/iccninterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/iounitdef.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/machine.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfpbl.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/multi_gases.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfpblt.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfpbltq.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfscu.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mfscuq.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/num_parthds.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ozne_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ozinterp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/physcons.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/physparam.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radcons.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_gases.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radiation_surface.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radlw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radsw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/samfaerosols.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfcsub.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sflx.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/set_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/tridi.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/wv_saturation.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radsw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gwdc.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gscond.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_sice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ozphys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/precpd.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_diag.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/radlw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cs_conv.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/h2ophys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_nst.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/moninedmf.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_diff.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/m_micro.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/gwdps.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/drag_suite.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_cice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/cnvc90.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/sfc_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/dcyc2.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/FV3/ccpp/physics/physics/moninshoc.f +INFOGot CAPS from environment variable: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2/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: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". +-- Build files have been written to: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/tests/build_fv3_2 ++ make -j 8 +Scanning dependencies of target fv3cpl Scanning dependencies of target ccpp -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 5 -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 3 -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 7 -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 6 -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 4 -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields_idx.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_utils.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 2 -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.c -Linking Fortran static library libccpp.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar cr libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -Linking Fortran executable test_check -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_check.dir/test_check.f90.o -o test_check -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/test_fields.dir/test_fields.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_fields.c -Linking C executable test_fields -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -O2 -fPIC -qopenmp -qopenmp CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -Linking Fortran executable test_init_finalize -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". +[ 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/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 +[ 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. +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 +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.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%] 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%] Built target ccpp +[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.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%] Built target fv3cpl +[ 2%] 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_ Scanning dependencies of target ccppphys -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 17 -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 37 -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 9 -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 47 -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 41 -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 42 -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 22 -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 23 -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 25 -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 28 -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 36 -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 20 -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 45 -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 33 -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 48 -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 21 -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 39 -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 40 -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 38 -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 66 -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 15 -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 16 -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 27 -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 35 -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 44 -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 12 -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 24 -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 11 -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 19 -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 46 -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 82 -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 26 -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 49 -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 72 -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 83 -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 89 -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 78 -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 79 -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 80 -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 57 -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 62 -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 51 -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 76 -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 91 -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 63 -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 73 -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 58 -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 77 -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 70 -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 94 -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 86 -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 95 -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 61 -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 90 -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 54 -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 97 -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 96 -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 93 -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 67 -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 84 -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 60 -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 53 -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 65 -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 71 -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 32 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 55 -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 88 -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 75 -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 64 -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 85 -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 92 -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 81 -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 68 -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 59 -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 87 -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 74 -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 52 -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 43 -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 69 -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 56 -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 50 -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 10 -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 13 -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 14 -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 18 -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 29 -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 30 -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 31 -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 32 -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 34 -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -Linking Fortran static library libccppphys.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccppphys.dir/link.txt --verbose=1 -/usr/bin/ar cr 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_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/mfscu.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/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o -/usr/bin/ranlib libccppphys.a -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[2]: Nothing to be done for `preinstall'. -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Bitforbit" --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccpp.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config-bitforbit.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_utils.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_errors.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_strings.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_suite.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_types.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_api.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccppphys.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config-bitforbit.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_stochastics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_stochastics_cap.mod -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL on hera -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/configure.fv3 -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/modules.fv3 -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 COMP_BINDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake -C cpl FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -makefile:67: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DOVERLOAD_R4 CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -makefile:54: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -gmake -C io FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.0_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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_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_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o +[ 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%] 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/namelist_soilveg.f.o +[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o +[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o +fpp: warning: keyword redefined: STATIC +[ 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_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_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 +fpp: warning: keyword redefined: STATIC +[ 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 +fpp: warning: keyword redefined: STATIC +[ 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/gfs_phy_tracer_config.F.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 +fpp: warning: keyword redefined: STATIC +[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o +[ 4%] 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 +[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o +[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o +[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o +[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o +[ 7%] 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. +[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o +[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o +[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.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_memutils.F90.o +[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o +[ 7%] 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 +[ 9%] 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. +[ 10%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.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/h2ophys.f.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_2015.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 +[ 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 +fpp: warning: keyword redefined: STATIC +[ 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 +[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o +[ 15%] 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/cu_gf_sh.F90.o +fpp: warning: keyword redefined: STATIC +[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o +[ 16%] 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 +[ 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/radlw_datatb.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/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90.o +[ 23%] 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 +[ 24%] 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 +[ 24%] 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 +[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90.o +[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o +[ 25%] 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 +fpp: warning: keyword redefined: STATIC +[ 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 +[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o +fpp: warning: keyword redefined: STATIC +[ 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/dcyc2.f.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/sfc_nst.f.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 +[ 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 +[ 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_v15p2_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 +[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_stochastics_cap.F90.o +[ 32%] 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_v15p2_radiation_cap.F90.o +[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_physics_cap.F90.o +[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_physics_cap.F90.o +[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_radiation_cap.F90.o +[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_time_vary_cap.F90.o +[ 34%] 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_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 +[ 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 +[ 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 +[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o +[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o +[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o +[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o +[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o +[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o +[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o +[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o +[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o +[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o +[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o +[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o +[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o +[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o +[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o +[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o +[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o +[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o +[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o +[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o +[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o +[ 41%] 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 +[ 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/shinhongvdif.F90.o +[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o +[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o +fpp: warning: keyword redefined: STATIC +fpp: warning: keyword redefined: STATIC +[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o +[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o +[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o +[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o +[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o +[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o +[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o +[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o +[ 45%] 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 +[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o +[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o +[ 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 +[ 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 +fpp: warning: keyword redefined: STATIC +[ 49%] Linking Fortran static library libccppphys.a +[ 49%] Built target ccppphys +Scanning dependencies of target gfsphysics +[ 49%] 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 +[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o +fpp: warning: keyword redefined: STATIC +[ 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/physparam.f.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 +[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o +[ 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 +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o +[ 54%] 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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o +Using pure routines. +Using 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 FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o +[ 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 +[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o +[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o +[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o +[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o +[ 55%] Linking Fortran static library libgfsphysics.a +[ 55%] Built target gfsphysics +Scanning dependencies of target ipd +Scanning dependencies of target ccppdriver +[ 55%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o +[ 55%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o +[ 56%] Linking Fortran static library libccppdriver.a +[ 56%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o +[ 56%] Built target ccppdriver +[ 57%] Linking Fortran static library libipd.a +[ 57%] 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/fms/fms.F90.o +[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o +[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.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_bicubic.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_bilinear.F90.o +[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.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 +[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o +[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o +[ 61%] 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 +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +[ 61%] 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 +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o +[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o +[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o +[ 61%] 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 +[ 63%] 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. +[ 63%] 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. +[ 64%] 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. +[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.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/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/coupler/coupler_types.F90.o +[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o +[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o +[ 68%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o +[ 68%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o +[ 68%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o +[ 68%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o +[ 68%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o +[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o +[ 69%] 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. +[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o +[ 69%] 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 +[ 70%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o +[ 70%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o +[ 70%] 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 -Converting pointers to allocatable components -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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake esmf_make_fragment FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Installation into "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC" -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; \ -gmake nems REPRO=Y \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL CCPP_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp FV3_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" ; \ -test -x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" -CPPFLAGS += ESMF_VERSION_REVISION="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_MAJOR="8" -CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dom.Heinzeller) Tue Oct 29 12:28:21 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 12:28:21 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 12:28:21 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 12:28:21 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 12:28:21 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 12:28:21 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 12:28:21 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 12:28:21 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 12:28:21 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 12:28:21 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -mpiifort -o /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cap.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libccppdriver.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3core.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3io.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libipd.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libgfsphys.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cpl.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libstochastic_physics.a -L/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +[ 71%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o +[ 71%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o +[ 71%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o +[ 71%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o +[ 71%] 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 +[ 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 +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/read_mosaic.c.o +[ 73%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o +[ 73%] 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 +[ 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 +[ 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/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 +[ 77%] 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. +[ 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_eta.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_timing.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 +[ 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/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/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 +[ 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/tools/init_hydro.F90.o +[ 82%] 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/fv_treat_da_inc.F90.o +[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o +[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o +[ 84%] Linking Fortran static library libio.a +[ 84%] Built target io +[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o +[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o +[ 84%] 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_diagnostics.F90.o +[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o +[ 85%] 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_regional_bc.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 +[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o +[ 87%] 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 +[ 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. +[ 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 +[ 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/stochy_gg_def.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/glats_stochy.f.o +[ 91%] 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/gozrineo_stochy.f.o +[ 93%] 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/get_ls_node_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/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 +[ 93%] 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/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/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 +fpp: warning: keyword redefined: STATIC +[ 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/cellular_automata.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/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 +[ 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/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/module_NEMS_UTILS.F90.o +[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.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/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.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' -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_11.exe" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_11.exe -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_11 BUILD_ENV=hera.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' NEMS_BUILDOPT=REPRO=Y clean -Will copy modules.nems and NEMS.x as fv3_11 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -+ elapsed=874 -+ echo 'Elapsed time 874 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 874 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ readonly BUILD_TARGET=hera.intel -+ BUILD_TARGET=hera.intel -+ readonly 'MAKE_OPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' -+ readonly BUILD_NAME=fv3_12 -+ BUILD_NAME=fv3_12 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -hfe06 -+ 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 -+ 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\W\W\3\=\Y* ]] -+ [[ 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 == *\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* ]] -+ NEMS_BUILDOPT=REPRO=Y +[100%] Built target NEMS.exe ++ mv NEMS.exe ../fv3_2.exe ++ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_ufs_public_release_update_20191210/ufs-weather-model_public-release_update-from-dtc-develop-20191209/rt/modulefiles/hera.intel/fv3 ../modules.fv3_2 ++ cd .. + '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_12 BUILD_ENV=hera.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' NEMS_BUILDOPT=REPRO=Y distclean -Will copy modules.nems and NEMS.x as fv3_12 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include" ; \ -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp --clean -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: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test_results.mk -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_12 BUILD_ENV=hera.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' NEMS_BUILDOPT=REPRO=Y build -Will copy modules.nems and NEMS.x as fv3_12 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/modulefiles/hera.intel/fv3 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_12" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_12 -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/conf/configure.fv3.hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh" -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/configure_rules.mk:3: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=12000000 ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ; \ -) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ -exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" all - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL" -mv fms.mk "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh hera.intel "$PATH_CCPP" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk \ - "REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"" NO NO ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/include ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -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 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 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 slc of variable volume_fraction_of_unfrozen_soil_moisture 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 phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top 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 sec of variable seconds_elapsed_since_model_initialization 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 kbot of variable vertical_index_at_cloud_base 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 stc of variable soil_temperature 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 xlaixy of variable leaf_area_index 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 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 phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back 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 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 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 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 v10m of variable y_wind_at_10m 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 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 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 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 nmtvr of variable number_of_statistical_measures_of_subgrid_orography 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 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 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 ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial 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 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 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 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 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 levs of variable vertical_dimension 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 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 w_0 of variable coefficient_w_0 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 pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter 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 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 phy_myj_chkqlm of variable surface_layer_evaporation_switch 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 sdec of variable sine_of_solar_declination_angle 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 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 dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep 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 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 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 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 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 sinlat of variable sine_of_latitude 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 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 do_sfcperts of variable flag_for_stochastic_surface_perturbations 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 tsfc_ice of variable surface_skin_temperature_over_ice_interstitial 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 debug of variable flag_debug 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 u1 of variable x_wind_at_lowest_model_layer_for_diag 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 do_myjsfc of variable do_myjsfc 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 gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics 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 slopetype of variable surface_slope_classification 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 levh2o of variable vertical_dimension_of_h2o_forcing_data 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 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 save_q of variable tracer_concentration_save 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 cf_upi of variable convective_cloud_fraction_for_microphysics 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial 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 dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL 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 tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave 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 forcet of variable temperature_tendency_due_to_dynamics 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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 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 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 ntchmdiag of variable number_of_chemical_tracers_for_diagnostics 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 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 dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column 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 islmsk_cice of variable sea_land_ice_mask_cice 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 pgr of variable surface_air_pressure 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 nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling 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 nscav of variable number_of_tracers_scavenged 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 zorl_ice of variable surface_roughness_length_over_ice_interstitial 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 aero_in of variable flag_for_aerosol_input_MG 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 avg_max_length of variable time_interval_for_maximum_hourly_fields 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 kind_LOGICAL of variable kind_LOGICAL 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial 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 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 mdt of variable time_step_for_remapping_for_fast_physics 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 sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model 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 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 runoff of variable total_runoff 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 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 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 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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial 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 nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation 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 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 qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio 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 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 oceanfrac of variable sea_area_fraction 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 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 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 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 ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land 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 phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back 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 con_t0c of variable temperature_at_zero_celsius 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 dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling 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 shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term 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 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 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 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 mom4ice of variable flag_for_mom4_coupling 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 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 tsfcl of variable surface_skin_temperature_over_land 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ozphys -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 ozphys_2015 -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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme noahmpdrv -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 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 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_noahmp_pre -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 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 mp_thompson_post -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 gwdps_post -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 lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme mynnrad_post -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 lsm_noah -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme dcyc2t3_post -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -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 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_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_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_water_to_rain -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 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 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_aerosol_input_MG -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_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_shoc_after_convection -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 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 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 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 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_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_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 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 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 162 schemes to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.mk, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 12 auto-generated caps to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.mk and /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ ./build_ccpp.sh hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk 'REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/lib from /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -DNETCDF_DIR=/apps/netcdf/4.7.0/intel/18.0.5.274 -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DOPENMP=ON -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 18.0.0.20180823 --- The CXX compiler identification is Intel 18.0.0.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 --- 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 --- The Fortran compiler identification is Intel --- 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 LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") --- 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 SCHEMES from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90 --- Configuring done --- Generating done --- Build files have been written to: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 5 -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 3 -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 7 -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 6 -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 4 -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields_idx.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_utils.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 2 -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.c -Linking Fortran static library libccpp.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar cr libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -Linking Fortran executable test_check -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_check.dir/test_check.f90.o -o test_check -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/test_fields.dir/test_fields.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_fields.c -Linking C executable test_fields -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -O2 -fPIC -qopenmp -qopenmp CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -Linking Fortran executable test_init_finalize -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 17 -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 9 -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 12 -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 37 -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 49 -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 14 -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 23 -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 22 -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 20 -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 33 -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 45 -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 41 -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 21 -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 13 -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 38 -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 39 -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 40 -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 51 -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 42 -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 15 -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 16 -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 36 -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 27 -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 44 -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 26 -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 24 -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 11 -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 19 -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 81 -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 25 -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 47 -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 48 -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 75 -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 71 -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 82 -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 53 -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 88 -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 77 -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 78 -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 79 -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 56 -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 64 -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 72 -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 90 -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 59 -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 50 -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 58 -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 62 -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 65 -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 57 -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 94 -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 69 -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 85 -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 89 -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 54 -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 93 -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_noahmp_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_noahmp_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 63 -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 97 -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_noahmp_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_noahmp_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_noahmp_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_noahmp_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_noahmp_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_noahmp_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 96 -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_noahmp_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_noahmp_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 92 -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 95 -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_noahmp_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_noahmp_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 66 -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 83 -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 60 -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 70 -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 86 -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 76 -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 52 -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 74 -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 84 -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 87 -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 91 -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 80 -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 73 -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 61 -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 67 -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 43 -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 68 -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 28 -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 55 -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 10 -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 18 -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 29 -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 30 -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 31 -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 32 -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 34 -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 35 -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 46 -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -Linking Fortran static library libccppphys.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccppphys.dir/link.txt --verbose=1 -/usr/bin/ar cr 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_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/mfscu.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/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o -/usr/bin/ranlib libccppphys.a -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[2]: Nothing to be done for `preinstall'. -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Bitforbit" --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccpp.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config-bitforbit.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_utils.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_errors.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_strings.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_suite.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_types.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_api.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccppphys.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config-bitforbit.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_noahmp_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_noahmp_fast_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_noahmp_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_noahmp_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_noahmp_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_noahmp_stochastics_cap.mod -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL on hera -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/configure.fv3 -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/modules.fv3 -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 COMP_BINDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake -C cpl FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -makefile:67: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -makefile:54: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -gmake -C io FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.0_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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_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_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake esmf_make_fragment FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Installation into "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC" -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; \ -gmake nems REPRO=Y \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL CCPP_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp FV3_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" ; \ -test -x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" -CPPFLAGS += ESMF_VERSION_REVISION="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_MAJOR="8" -CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dom.Heinzeller) Tue Oct 29 13:22:20 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 13:22:20 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 13:22:20 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 13:22:20 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 13:22:20 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 13:22:20 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 13:22:20 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 13:22:20 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 13:22:20 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 13:22:20 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -mpiifort -o /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cap.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libccppdriver.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3core.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3io.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libipd.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libgfsphys.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cpl.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libstochastic_physics.a -L/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/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' -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_12.exe" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_12.exe -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_12 BUILD_ENV=hera.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' NEMS_BUILDOPT=REPRO=Y clean -Will copy modules.nems and NEMS.x as fv3_12 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -+ elapsed=902 -+ echo 'Elapsed time 902 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp finished' -Elapsed time 902 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ readonly BUILD_TARGET=hera.intel -+ BUILD_TARGET=hera.intel -+ readonly 'MAKE_OPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf' -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf' -+ readonly BUILD_NAME=fv3_13 -+ BUILD_NAME=fv3_13 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -hfe06 -+ 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 -+ 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\W\W\3\=\Y* ]] -+ [[ 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 == *\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* ]] -+ NEMS_BUILDOPT=REPRO=Y -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_13 BUILD_ENV=hera.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf' NEMS_BUILDOPT=REPRO=Y distclean -Will copy modules.nems and NEMS.x as fv3_13 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include" ; \ -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf --clean -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: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test_results.mk -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_13 BUILD_ENV=hera.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf' NEMS_BUILDOPT=REPRO=Y build -Will copy modules.nems and NEMS.x as fv3_13 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/modulefiles/hera.intel/fv3 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_13" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_13 -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/conf/configure.fv3.hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh" -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/configure_rules.mk:3: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=12000000 ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ; \ -) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ -exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" all - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL" -mv fms.mk "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh hera.intel "$PATH_CCPP" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk \ - "REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"" NO NO ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/include ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf -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 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 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 slc of variable volume_fraction_of_unfrozen_soil_moisture 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 phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top 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 sec of variable seconds_elapsed_since_model_initialization 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 kbot of variable vertical_index_at_cloud_base 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 stc of variable soil_temperature 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 xlaixy of variable leaf_area_index 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 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 phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back 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 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 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 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 v10m of variable y_wind_at_10m 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 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 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 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 nmtvr of variable number_of_statistical_measures_of_subgrid_orography 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 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 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 ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial 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 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 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 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 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 levs of variable vertical_dimension 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 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 w_0 of variable coefficient_w_0 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 pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter 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 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 phy_myj_chkqlm of variable surface_layer_evaporation_switch 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 sdec of variable sine_of_solar_declination_angle 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 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 dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep 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 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 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 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 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 sinlat of variable sine_of_latitude 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 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 do_sfcperts of variable flag_for_stochastic_surface_perturbations 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 tsfc_ice of variable surface_skin_temperature_over_ice_interstitial 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 debug of variable flag_debug 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 u1 of variable x_wind_at_lowest_model_layer_for_diag 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 do_myjsfc of variable do_myjsfc 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 gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics 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 slopetype of variable surface_slope_classification 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 levh2o of variable vertical_dimension_of_h2o_forcing_data 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 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 save_q of variable tracer_concentration_save 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 cf_upi of variable convective_cloud_fraction_for_microphysics 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial 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 dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL 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 tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave 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 forcet of variable temperature_tendency_due_to_dynamics 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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 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 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 ntchmdiag of variable number_of_chemical_tracers_for_diagnostics 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 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 dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column 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 islmsk_cice of variable sea_land_ice_mask_cice 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 pgr of variable surface_air_pressure 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 nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling 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 nscav of variable number_of_tracers_scavenged 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 zorl_ice of variable surface_roughness_length_over_ice_interstitial 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 aero_in of variable flag_for_aerosol_input_MG 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 avg_max_length of variable time_interval_for_maximum_hourly_fields 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 kind_LOGICAL of variable kind_LOGICAL 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial 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 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 mdt of variable time_step_for_remapping_for_fast_physics 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 sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model 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 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 runoff of variable total_runoff 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 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 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 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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial 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 nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation 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 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 qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio 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 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 oceanfrac of variable sea_area_fraction 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 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 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 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 ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land 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 phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back 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 con_t0c of variable temperature_at_zero_celsius 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 dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling 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 shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term 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 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 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 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 mom4ice of variable flag_for_mom4_coupling 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 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 tsfcl of variable surface_skin_temperature_over_land 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ozphys -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 ozphys_2015 -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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme noahmpdrv -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 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 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_noahmp_pre -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 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 mp_thompson_post -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 gwdps_post -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 lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme mynnrad_post -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 lsm_noah -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme dcyc2t3_post -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -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 cloud_area_fraction -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 conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep -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 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 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 explicit_rainfall_rate_from_previous_timestep -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_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_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -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 graupel_precipitation_rate_from_previous_timestep -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_precipitation_rate_from_previous_timestep -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 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 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 namelist_filename_for_internal_file_reads -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_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_precipitation_rate_from_previous_timestep -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_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 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 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 162 schemes to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.mk, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 15 auto-generated caps to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.mk and /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ ./build_ccpp.sh hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk 'REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/lib from /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -DNETCDF_DIR=/apps/netcdf/4.7.0/intel/18.0.5.274 -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DOPENMP=ON -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 18.0.0.20180823 --- The CXX compiler identification is Intel 18.0.0.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 --- 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 --- The Fortran compiler identification is Intel --- 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 LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") --- 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 SCHEMES from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90 --- Configuring done --- Generating done --- Build files have been written to: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 5 -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 3 -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 7 -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 6 -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 4 -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields_idx.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_utils.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 2 -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.c -Linking Fortran static library libccpp.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar cr libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -Linking Fortran executable test_check -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_check.dir/test_check.f90.o -o test_check -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/test_fields.dir/test_fields.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_fields.c -Linking C executable test_fields -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -O2 -fPIC -qopenmp -qopenmp CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -Linking Fortran executable test_init_finalize -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 9%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 36 -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 9 -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 12 -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 17 -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 40 -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 41 -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 48 -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 14 -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 15 -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 18 -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 22 -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 24 -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 29 -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 35 -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 16 -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 44 -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 13 -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 90 -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 38 -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 39 -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 37 -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 27 -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 34 -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 43 -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 26 -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 21 -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 23 -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 11 -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 19 -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 80 -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 25 -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 46 -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 47 -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 70 -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 87 -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 59 -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 89 -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 81 -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 76 -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 77 -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 78 -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 50 -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 63 -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 74 -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 73 -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 88 -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 60 -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 49 -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 64 -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 71 -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 75 -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 92 -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmgshoc_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmgshoc_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 56 -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 68 -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 55 -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmgshoc_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmgshoc_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 84 -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmgshoc_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmgshoc_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 53 -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 91 -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmgshoc_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmgshoc_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 61 -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmg_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmg_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 94 -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmg_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmg_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 95 -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmg_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmg_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmg_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmg_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 58 -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 57 -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 54 -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 66 -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 97 -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_satmedmf_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_satmedmf_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_satmedmf_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_satmedmf_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_satmedmf_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_satmedmf_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 96 -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_satmedmf_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_satmedmf_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 93 -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmg_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmg_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmgshoc_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmgshoc_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_satmedmf_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_satmedmf_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 65 -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 82 -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 52 -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 69 -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 86 -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 83 -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 79 -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 20 -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 85 -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 62 -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 72 -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 51 -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 42 -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 67 -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 28 -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 10 -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 30 -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 31 -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 32 -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 33 -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 45 -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -Linking Fortran static library libccppphys.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccppphys.dir/link.txt --verbose=1 -/usr/bin/ar cr 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_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/mfscu.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/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o -/usr/bin/ranlib libccppphys.a -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[2]: Nothing to be done for `preinstall'. -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Bitforbit" --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccpp.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config-bitforbit.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_utils.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_errors.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_strings.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_suite.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_types.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_api.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccppphys.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config-bitforbit.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmgshoc_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmgshoc_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmgshoc_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmgshoc_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmgshoc_stochastics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmg_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmg_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmg_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmg_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmg_stochastics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_satmedmf_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_satmedmf_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_satmedmf_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_satmedmf_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_satmedmf_stochastics_cap.mod -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL on hera -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/configure.fv3 -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/modules.fv3 -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 COMP_BINDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake -C cpl FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -makefile:67: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -makefile:54: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -gmake -C io FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.0_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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_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_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake esmf_make_fragment FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Installation into "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC" -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; \ -gmake nems REPRO=Y \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL CCPP_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp FV3_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" ; \ -test -x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" -CPPFLAGS += ESMF_VERSION_REVISION="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_MAJOR="8" -CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dom.Heinzeller) Tue Oct 29 13:46:46 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 13:46:46 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 13:46:46 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 13:46:46 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 13:46:46 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 13:46:46 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 13:46:46 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 13:46:46 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 13:46:46 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 13:46:46 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -mpiifort -o /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cap.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libccppdriver.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3core.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3io.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libipd.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libgfsphys.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cpl.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libstochastic_physics.a -L/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/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' -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_13.exe" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_13.exe -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_13 BUILD_ENV=hera.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf' NEMS_BUILDOPT=REPRO=Y clean -Will copy modules.nems and NEMS.x as fv3_13 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -+ elapsed=998 -+ echo 'Elapsed time 998 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf finished' -Elapsed time 998 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ readonly BUILD_TARGET=hera.intel -+ BUILD_TARGET=hera.intel -+ readonly 'MAKE_OPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y' -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y' -+ readonly BUILD_NAME=fv3_14 -+ BUILD_NAME=fv3_14 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -hfe06 -+ echo 'Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,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_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y into fv3_14.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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\W\W\3\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,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_GFS_v15,FV3_GFS_v15plus,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_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ NEMS_BUILDOPT=REPRO=Y -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_14 BUILD_ENV=hera.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y' NEMS_BUILDOPT=REPRO=Y distclean -Will copy modules.nems and NEMS.x as fv3_14 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include" ; \ -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 --clean -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: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test_results.mk -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_14 BUILD_ENV=hera.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y' NEMS_BUILDOPT=REPRO=Y build -Will copy modules.nems and NEMS.x as fv3_14 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/modulefiles/hera.intel/fv3 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_14" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_14 -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/conf/configure.fv3.hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh" -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/configure_rules.mk:3: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=12000000 ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ; \ -) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ -exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" all - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL" -mv fms.mk "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh hera.intel "$PATH_CCPP" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk \ - "REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"" NO NO ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/include ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 -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_v15.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_v15plus.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 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 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 slc of variable volume_fraction_of_unfrozen_soil_moisture 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 phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top 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 sec of variable seconds_elapsed_since_model_initialization 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 kbot of variable vertical_index_at_cloud_base 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 stc of variable soil_temperature 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 xlaixy of variable leaf_area_index 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 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 phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back 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 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 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 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 v10m of variable y_wind_at_10m 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 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 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 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 nmtvr of variable number_of_statistical_measures_of_subgrid_orography 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 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 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 ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial 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 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 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 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 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 levs of variable vertical_dimension 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 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 w_0 of variable coefficient_w_0 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 pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter 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 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 phy_myj_chkqlm of variable surface_layer_evaporation_switch 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 sdec of variable sine_of_solar_declination_angle 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 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 dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep 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 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 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 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 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 sinlat of variable sine_of_latitude 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 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 do_sfcperts of variable flag_for_stochastic_surface_perturbations 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 tsfc_ice of variable surface_skin_temperature_over_ice_interstitial 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 debug of variable flag_debug 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 u1 of variable x_wind_at_lowest_model_layer_for_diag 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 do_myjsfc of variable do_myjsfc 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 gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics 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 slopetype of variable surface_slope_classification 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 levh2o of variable vertical_dimension_of_h2o_forcing_data 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 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 save_q of variable tracer_concentration_save 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 cf_upi of variable convective_cloud_fraction_for_microphysics 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial 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 dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL 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 tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave 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 forcet of variable temperature_tendency_due_to_dynamics 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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 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 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 ntchmdiag of variable number_of_chemical_tracers_for_diagnostics 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 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 dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column 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 islmsk_cice of variable sea_land_ice_mask_cice 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 pgr of variable surface_air_pressure 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 nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling 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 nscav of variable number_of_tracers_scavenged 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 zorl_ice of variable surface_roughness_length_over_ice_interstitial 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 aero_in of variable flag_for_aerosol_input_MG 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 avg_max_length of variable time_interval_for_maximum_hourly_fields 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 kind_LOGICAL of variable kind_LOGICAL 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial 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 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 mdt of variable time_step_for_remapping_for_fast_physics 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 sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model 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 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 runoff of variable total_runoff 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 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 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 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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial 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 nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation 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 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 qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio 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 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 oceanfrac of variable sea_area_fraction 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 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 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 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 ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land 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 phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back 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 con_t0c of variable temperature_at_zero_celsius 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 dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling 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 shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term 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 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 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 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 mom4ice of variable flag_for_mom4_coupling 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 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 tsfcl of variable surface_skin_temperature_over_land 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ozphys -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 ozphys_2015 -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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme noahmpdrv -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 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 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_noahmp_pre -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 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 mp_thompson_post -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 gwdps_post -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 lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme mynnrad_post -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 lsm_noah -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme dcyc2t3_post -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -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 cloud_area_fraction -INFO: filtering out variable cloud_condensed_water_conversion_threshold -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_water_to_rain -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep -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 do_myjsfc -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable explicit_rainfall_rate_from_previous_timestep -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_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_shoc_after_convection -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 graupel_precipitation_rate_from_previous_timestep -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_precipitation_rate_from_previous_timestep -INFO: filtering out variable ice_supersaturation_threshold -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_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable liquid_water_density -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable number_of_snow_layers -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_precipitation_rate_from_previous_timestep -INFO: filtering out variable snow_temperature -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -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 turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 162 schemes to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.mk, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 29 auto-generated caps to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.mk and /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ ./build_ccpp.sh hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk 'REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/lib from /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -DNETCDF_DIR=/apps/netcdf/4.7.0/intel/18.0.5.274 -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DOPENMP=ON -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 18.0.0.20180823 --- The CXX compiler identification is Intel 18.0.0.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 --- 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 --- The Fortran compiler identification is Intel --- 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 LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") --- 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 SCHEMES from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15_stochastics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_stochastics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_CPT_v0_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_CPT_v0_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_CPT_v0_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_CPT_v0_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_CPT_v0_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_CPT_v0_stochastics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GSD_v0_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GSD_v0_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GSD_v0_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GSD_v0_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GSD_v0_stochastics_cap.F90 --- Configuring done --- Generating done --- Build files have been written to: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 3 -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 6 -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 4 -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 5 -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 2 -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 7 -[ 6%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields_idx.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_utils.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.c -Linking Fortran static library libccpp.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar cr libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -Linking Fortran executable test_check -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_check.dir/test_check.f90.o -o test_check -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 8%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/test_fields.dir/test_fields.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_fields.c -Linking C executable test_fields -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -O2 -fPIC -qopenmp -qopenmp CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -Linking Fortran executable test_init_finalize -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 9%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 9%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 9%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 11 -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 16 -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 34 -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 45 -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 13 -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 14 -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 17 -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 21 -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 27 -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 15 -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 41 -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 38 -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 12 -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 84 -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 35 -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 36 -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 37 -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 47 -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 39 -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 9 -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 33 -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 25 -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 24 -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 20 -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 22 -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 10 -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 18 -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 23 -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 43 -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 44 -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 69 -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 32 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 85 -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 75 -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 81 -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 83 -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 49 -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 59 -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 66 -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 82 -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 54 -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 46 -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 53 -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 57 -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 60 -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 64 -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 52 -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 74 -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 51 -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 71 -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 86 -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 87 -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 50 -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 88 -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 63 -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 56 -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 89 -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 90 -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 92 -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 91 -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_CPT_v0_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_cpt_v0_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_cpt_v0_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 62 -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 55 -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 68 -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 95 -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_CPT_v0_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_cpt_v0_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_cpt_v0_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_CPT_v0_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_cpt_v0_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_cpt_v0_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_CPT_v0_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_cpt_v0_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_cpt_v0_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 94 -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_CPT_v0_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_cpt_v0_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_cpt_v0_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 72 -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 78 -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 73 -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 67 -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GSD_v0_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gsd_v0_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gsd_v0_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 80 -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 61 -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 97 -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GSD_v0_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gsd_v0_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gsd_v0_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 98 -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GSD_v0_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gsd_v0_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gsd_v0_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GSD_v0_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gsd_v0_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gsd_v0_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 93 -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_CPT_v0_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_cpt_v0_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_cpt_v0_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 96 -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GSD_v0_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gsd_v0_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gsd_v0_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 65 -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 79 -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 70 -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 48 -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 77 -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 76 -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 19 -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 58 -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 26 -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 28 -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 29 -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 30 -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 31 -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 32 -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 40 -[ 99%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 42 -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -Linking Fortran static library libccppphys.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccppphys.dir/link.txt --verbose=1 -/usr/bin/ar cr 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_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/mfscu.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/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o -/usr/bin/ranlib libccppphys.a -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[2]: Nothing to be done for `preinstall'. -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Bitforbit" --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccpp.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config-bitforbit.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_utils.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_errors.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_strings.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_suite.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_types.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_api.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccppphys.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config-bitforbit.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_v15_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_v15_fast_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_v15_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_v15_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_v15_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_v15_stochastics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_fast_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_stochastics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_cpt_v0_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_cpt_v0_fast_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_cpt_v0_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_cpt_v0_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_cpt_v0_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_cpt_v0_stochastics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gsd_v0_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gsd_v0_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gsd_v0_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gsd_v0_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gsd_v0_stochastics_cap.mod -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL on hera -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/configure.fv3 -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/modules.fv3 -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 COMP_BINDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake -C cpl FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -makefile:67: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DOVERLOAD_R4 CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -makefile:54: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -gmake -C io FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.0_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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_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_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake esmf_make_fragment FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Installation into "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC" -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; \ -gmake nems REPRO=Y \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL CCPP_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp FV3_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" ; \ -test -x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" -CPPFLAGS += ESMF_VERSION_REVISION="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_MAJOR="8" -CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dom.Heinzeller) Tue Oct 29 14:09:35 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 14:09:35 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 14:09:35 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 14:09:35 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 14:09:35 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 14:09:35 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 14:09:35 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 14:09:35 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 14:09:35 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 14:09:35 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -mpiifort -o /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cap.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libccppdriver.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3core.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3io.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libipd.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libgfsphys.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cpl.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libstochastic_physics.a -L/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/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' -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_14.exe" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_14.exe -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_14 BUILD_ENV=hera.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y' NEMS_BUILDOPT=REPRO=Y clean -Will copy modules.nems and NEMS.x as fv3_14 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -+ elapsed=1055 -+ echo 'Elapsed time 1055 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y finished' -Elapsed time 1055 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ readonly BUILD_TARGET=hera.intel -+ BUILD_TARGET=hera.intel -+ readonly 'MAKE_OPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017' -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017' -+ readonly BUILD_NAME=fv3_15 -+ BUILD_NAME=fv3_15 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -hfe06 -+ 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 -+ 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\W\W\3\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\D\E\B\U\G\=\Y* ]] -+ [[ 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* ]] -+ NEMS_BUILDOPT= -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_15 BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017' NEMS_BUILDOPT= distclean -Will copy modules.nems and NEMS.x as fv3_15 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017 --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include" ; \ -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --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 formet -INFO: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test_results.mk -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_15 BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017' NEMS_BUILDOPT= build -Will copy modules.nems and NEMS.x as fv3_15 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/modulefiles/hera.intel/fv3 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_15" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_15 -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/conf/configure.fv3.hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh" -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/configure_rules.mk:3: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=12000000 ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ; \ -) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ -exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" all - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL" -mv fms.mk "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017 ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh hera.intel "$PATH_CCPP" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk \ - "CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"" NO NO ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/include ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --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 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 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 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 slc of variable volume_fraction_of_unfrozen_soil_moisture 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 phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top 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 sec of variable seconds_elapsed_since_model_initialization 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 kbot of variable vertical_index_at_cloud_base 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 stc of variable soil_temperature 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 xlaixy of variable leaf_area_index 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 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 phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back 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 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 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 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 v10m of variable y_wind_at_10m 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 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 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 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 nmtvr of variable number_of_statistical_measures_of_subgrid_orography 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 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 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 ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial 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 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 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 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 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 levs of variable vertical_dimension 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 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 w_0 of variable coefficient_w_0 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 pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter 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 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 phy_myj_chkqlm of variable surface_layer_evaporation_switch 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 sdec of variable sine_of_solar_declination_angle 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 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 dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep 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 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 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 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 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 sinlat of variable sine_of_latitude 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 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 do_sfcperts of variable flag_for_stochastic_surface_perturbations 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 tsfc_ice of variable surface_skin_temperature_over_ice_interstitial 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 debug of variable flag_debug 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 u1 of variable x_wind_at_lowest_model_layer_for_diag 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 do_myjsfc of variable do_myjsfc 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 gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics 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 slopetype of variable surface_slope_classification 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 levh2o of variable vertical_dimension_of_h2o_forcing_data 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 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 save_q of variable tracer_concentration_save 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 cf_upi of variable convective_cloud_fraction_for_microphysics 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial 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 dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL 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 tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave 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 forcet of variable temperature_tendency_due_to_dynamics 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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 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 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 ntchmdiag of variable number_of_chemical_tracers_for_diagnostics 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 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 dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column 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 islmsk_cice of variable sea_land_ice_mask_cice 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 pgr of variable surface_air_pressure 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 nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling 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 nscav of variable number_of_tracers_scavenged 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 zorl_ice of variable surface_roughness_length_over_ice_interstitial 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 aero_in of variable flag_for_aerosol_input_MG 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 avg_max_length of variable time_interval_for_maximum_hourly_fields 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 kind_LOGICAL of variable kind_LOGICAL 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial 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 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 mdt of variable time_step_for_remapping_for_fast_physics 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 sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model 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 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 runoff of variable total_runoff 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 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 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 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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial 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 nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation 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 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 qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio 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 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 oceanfrac of variable sea_area_fraction 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 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 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 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 ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land 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 phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back 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 con_t0c of variable temperature_at_zero_celsius 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 dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling 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 shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term 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 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 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 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 mom4ice of variable flag_for_mom4_coupling 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 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 tsfcl of variable surface_skin_temperature_over_land 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ozphys -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 ozphys_2015 -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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme noahmpdrv -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 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 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_noahmp_pre -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 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 mp_thompson_post -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 gwdps_post -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 lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme mynnrad_post -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 lsm_noah -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme dcyc2t3_post -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -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 cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -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 conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep -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 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 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 explicit_rainfall_rate_from_previous_timestep -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_aerosol_input_MG -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_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_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_shoc_after_convection -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 graupel_precipitation_rate_from_previous_timestep -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_precipitation_rate_from_previous_timestep -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 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 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 namelist_filename_for_internal_file_reads -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_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_precipitation_rate_from_previous_timestep -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_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 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_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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 162 schemes to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.mk, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 5 auto-generated caps to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.mk and /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ ./build_ccpp.sh hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk 'CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/lib from /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -DNETCDF_DIR=/apps/netcdf/4.7.0/intel/18.0.5.274 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DOPENMP=ON -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 18.0.0.20180823 --- The CXX compiler identification is Intel 18.0.0.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 --- 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 --- The Fortran compiler identification is Intel --- 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 LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") --- 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 SCHEMES from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 5 -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 3 -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 7 -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 6 -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 4 -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 -[ 6%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields_idx.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_utils.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 2 -[ 8%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.c -Linking Fortran static library libccpp.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar cr libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 8 -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 8%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -Linking Fortran executable test_check -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_check.dir/test_check.f90.o -o test_check -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 8%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 9%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/test_fields.dir/test_fields.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_fields.c -Linking C executable test_fields -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 10%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -Linking Fortran executable test_init_finalize -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 10%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 38 -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 48 -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 18 -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 42 -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 51 -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 15 -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 16 -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 19 -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 24 -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 23 -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 29 -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 37 -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 17 -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 46 -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 34 -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 49 -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 43 -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 22 -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 95 -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX-I -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 40 -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 41 -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 39 -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 68 -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 53 -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 44 -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 10 -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 28 -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 36 -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 27 -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 12 -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 25 -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 9 -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 11 -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 20 -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 47 -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 84 -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 26 -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 50 -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 74 -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 94 -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 85 -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 91 -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 80 -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 81 -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 82 -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 78 -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 93 -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 61 -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 52 -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 60 -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 64 -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 65 -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 75 -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 97 -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 59 -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 72 -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 58 -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 92 -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 56 -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 96 -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 70 -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 62 -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 67 -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 73 -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 89 -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 79 -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 55 -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 54 -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 71 -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 77 -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 66 -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 87 -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 86 -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 90 -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 69 -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 83 -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 21 -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 63 -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 88 -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 76 -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 57 -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 13 -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 14 -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 30 -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 31 -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 32 -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 33 -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 35 -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 45 -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -Linking Fortran static library libccppphys.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccppphys.dir/link.txt --verbose=1 -/usr/bin/ar cr 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_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/mfscu.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/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 8 -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 8%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 10%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[2]: Nothing to be done for `preinstall'. -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Release" --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccpp.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config-release.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_utils.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_errors.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_strings.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_suite.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_types.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_api.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccppphys.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config-release.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_stochastics_cap.mod -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL on hera -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/configure.fv3 -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/modules.fv3 -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 COMP_BINDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake -C cpl FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -Duse_libMPI -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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -Duse_libMPI -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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpiifort -Duse_libMPI -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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -makefile:67: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -makefile:54: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -gmake -C io FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.0_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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_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_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake esmf_make_fragment FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Installation into "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC" -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; \ -gmake nems \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL CCPP_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp FV3_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" ; \ -test -x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" -CPPFLAGS += ESMF_VERSION_REVISION="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_MAJOR="8" -CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dom.Heinzeller) Tue Oct 29 14:43:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 14:43:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 14:43:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 14:43:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 14:43:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 14:43:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 14:43:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 14:43:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 14:43:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 14:43:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -mpiifort -o /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cap.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libccppdriver.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3core.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3io.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libipd.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libgfsphys.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cpl.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libstochastic_physics.a -L/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/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' -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_15.exe" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_15.exe -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_15 BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017' NEMS_BUILDOPT= clean -Will copy modules.nems and NEMS.x as fv3_15 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -+ elapsed=927 -+ echo 'Elapsed time 927 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 finished' -Elapsed time 927 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 finished -+ SECONDS=0 -+ [[ 3 -lt 2 ]] -+ readonly PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ readonly APP=CCPP -+ APP=CCPP -+ readonly BUILD_NAME=fv3_16 -+ BUILD_NAME=fv3_16 -+ hostname -hfe06 -+ echo 'Compiling app CCPP into fv3_16.exe' -Compiling app CCPP into fv3_16.exe -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/.. -+ rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS/exe/NEMS.x -+ rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS/src/conf/modules.nems -+ set +e -+ ./NEMS/NEMSAppBuilder app=CCPP -ls: cannot access ../conf/component_*.mk: No such file or directory -NEMSAppBuilder: make app=CCPP distclean -Convert /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/CCPP.appBuilder -...into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/CCPP.appBuilder.mk -Include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/CCPP.appBuilder.mk -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec make CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017 --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include" ; \ -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --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 formet -INFO: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec make \ - -k cleanall FMS_DIR=/dev/null -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; make "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test_results.mk -NEMSAppBuilder: make app=CCPP build -Convert /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/CCPP.appBuilder -...into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/CCPP.appBuilder.mk -Include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/CCPP.appBuilder.mk -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/conf/configure.fv3.hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/modulefiles/hera.intel/fv3 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh" -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/configure_rules.mk:3: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk: No such file or directory -make -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" TEST -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=12000000 ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ; \ -) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ -exec make CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" all - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -Building dependencies ... -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -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 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -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 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -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 -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../mpp/threadloc.c -o ../mpp/threadloc.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL" -mv fms.mk "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL"/. -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017 ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh hera.intel "$PATH_CCPP" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk \ - "CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"" NO NO ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/include ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --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 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 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 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 slc of variable volume_fraction_of_unfrozen_soil_moisture 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 phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top 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 sec of variable seconds_elapsed_since_model_initialization 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 kbot of variable vertical_index_at_cloud_base 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 stc of variable soil_temperature 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 xlaixy of variable leaf_area_index 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 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 phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back 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 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 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 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 v10m of variable y_wind_at_10m 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 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 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 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 nmtvr of variable number_of_statistical_measures_of_subgrid_orography 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 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 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 ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial 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 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 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 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 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 levs of variable vertical_dimension 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 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 w_0 of variable coefficient_w_0 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 pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter 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 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 phy_myj_chkqlm of variable surface_layer_evaporation_switch 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 sdec of variable sine_of_solar_declination_angle 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 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 dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep 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 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 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 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 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 sinlat of variable sine_of_latitude 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 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 do_sfcperts of variable flag_for_stochastic_surface_perturbations 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 tsfc_ice of variable surface_skin_temperature_over_ice_interstitial 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 debug of variable flag_debug 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 u1 of variable x_wind_at_lowest_model_layer_for_diag 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 do_myjsfc of variable do_myjsfc 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 gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics 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 slopetype of variable surface_slope_classification 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 levh2o of variable vertical_dimension_of_h2o_forcing_data 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 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 save_q of variable tracer_concentration_save 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 cf_upi of variable convective_cloud_fraction_for_microphysics 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial 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 dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL 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 tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave 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 forcet of variable temperature_tendency_due_to_dynamics 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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 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 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 ntchmdiag of variable number_of_chemical_tracers_for_diagnostics 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 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 dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column 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 islmsk_cice of variable sea_land_ice_mask_cice 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 pgr of variable surface_air_pressure 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 nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling 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 nscav of variable number_of_tracers_scavenged 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 zorl_ice of variable surface_roughness_length_over_ice_interstitial 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 aero_in of variable flag_for_aerosol_input_MG 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 avg_max_length of variable time_interval_for_maximum_hourly_fields 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 kind_LOGICAL of variable kind_LOGICAL 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial 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 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 mdt of variable time_step_for_remapping_for_fast_physics 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 sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model 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 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 runoff of variable total_runoff 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 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 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 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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial 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 nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation 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 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 qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio 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 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 oceanfrac of variable sea_area_fraction 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 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 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 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 ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land 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 phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back 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 con_t0c of variable temperature_at_zero_celsius 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 dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling 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 shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term 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 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 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 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 mom4ice of variable flag_for_mom4_coupling 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 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 tsfcl of variable surface_skin_temperature_over_land 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ozphys -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 ozphys_2015 -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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme noahmpdrv -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 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 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_noahmp_pre -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 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 mp_thompson_post -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 gwdps_post -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 lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme mynnrad_post -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 lsm_noah -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme dcyc2t3_post -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -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 cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -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 conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep -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 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 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 explicit_rainfall_rate_from_previous_timestep -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_aerosol_input_MG -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_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_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_shoc_after_convection -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 graupel_precipitation_rate_from_previous_timestep -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_precipitation_rate_from_previous_timestep -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 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 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 namelist_filename_for_internal_file_reads -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_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_precipitation_rate_from_previous_timestep -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_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 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_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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 162 schemes to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.mk, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 5 auto-generated caps to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.mk and /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ ./build_ccpp.sh hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk 'CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/lib from /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -DNETCDF_DIR=/apps/netcdf/4.7.0/intel/18.0.5.274 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DOPENMP=ON -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 18.0.0.20180823 --- The CXX compiler identification is Intel 18.0.0.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 --- 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 --- The Fortran compiler identification is Intel --- 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 LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") --- 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 SCHEMES from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 5 -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 3 -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 7 -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 6 -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 4 -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 -[ 6%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields_idx.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_utils.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 2 -[ 8%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.c -Linking Fortran static library libccpp.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar cr libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 8 -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 8%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -Linking Fortran executable test_check -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_check.dir/test_check.f90.o -o test_check -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 8%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 9%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/test_fields.dir/test_fields.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_fields.c -Linking C executable test_fields -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 10%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -Linking Fortran executable test_init_finalize -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 10%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 38 -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 48 -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 18 -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 42 -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 51 -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 15 -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 16 -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 19 -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 24 -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 23 -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 29 -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 37 -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 17 -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 46 -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 34 -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 49 -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 43 -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 22 -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 95 -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX-I -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 40 -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 41 -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 39 -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 68 -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 53 -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 44 -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 10 -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 28 -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 36 -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 27 -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 12 -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 25 -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 9 -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 11 -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 20 -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 47 -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 84 -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 26 -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 50 -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 74 -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 94 -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 85 -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 91 -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 80 -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 81 -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 82 -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 78 -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 93 -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 61 -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 52 -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 60 -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 64 -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 65 -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 75 -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 97 -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 59 -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 72 -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 58 -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 92 -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 56 -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 96 -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 70 -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 62 -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 67 -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 73 -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 89 -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 79 -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 55 -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 54 -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 71 -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 77 -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 66 -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 87 -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 86 -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 90 -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 69 -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 83 -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 21 -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 63 -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 88 -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 76 -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 57 -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 13 -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 14 -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 30 -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 31 -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 32 -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 33 -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 35 -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 45 -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -Linking Fortran static library libccppphys.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccppphys.dir/link.txt --verbose=1 -/usr/bin/ar cr 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_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/mfscu.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/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 8 -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 8%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 10%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[2]: Nothing to be done for `preinstall'. -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Release" --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccpp.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config-release.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_utils.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_errors.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_strings.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_suite.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_types.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_api.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccppphys.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config-release.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_stochastics_cap.mod -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL on hera -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/configure.fv3 -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/modules.fv3 -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; \ - exec make COMP=FV3 COMP_SRCDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 COMP_BINDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Building dependencies ... -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -make -C cpl FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -make -C gfsphysics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N DYN32=N # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpiifort -Duse_libMPI -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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -make -C ccpp/driver FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N DYN32=N # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -make -C ipd FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -make -C io FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.0_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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_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_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -make -C atmos_cubed_sphere FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -make -C ../stochastic_physics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -make libfv3cap.a FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -make esmf_make_fragment FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Installation into "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL" complete! - -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC" -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; \ -make nems \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL CCPP_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp FV3_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" ; \ -test -x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" -CPPFLAGS += ESMF_VERSION_REVISION="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_MAJOR="8" -CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -cd ENS_Cpl && make stub -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dom.Heinzeller) Tue Oct 29 15:44:54 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 15:44:54 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 15:44:54 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 15:44:54 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 15:44:54 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 15:44:54 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 15:44:54 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 15:44:54 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 15:44:54 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 15:44:54 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -mpiifort -o /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cap.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libccppdriver.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3core.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3io.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libipd.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libgfsphys.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cpl.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libstochastic_physics.a -L/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/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' -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x is created. -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -+ RC=0 -+ set -e -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/.. -+ [[ 0 -ne 0 ]] -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../tests/fv3_16.exe -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../tests/modules.fv3_16 -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS/src -+ gmake clean -Components in linker order: -rm -f -f *.tmp.f90 *.lst *.o *.mod lm map -cd ENS_Cpl ; gmake clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ gmake cleanall -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -+ rm -rf FV3_INSTALL -+ rm -rf nems_dir -+ elapsed=1161 -+ echo 'Elapsed time 1161 seconds. Compiling app CCPP finished' -Elapsed time 1161 seconds. Compiling app CCPP finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ readonly BUILD_TARGET=hera.intel -+ BUILD_TARGET=hera.intel -+ readonly 'MAKE_OPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' -+ readonly BUILD_NAME=fv3_17 -+ BUILD_NAME=fv3_17 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -hfe06 -+ 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 -+ 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\W\W\3\=\Y* ]] -+ [[ 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 == *\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* ]] -+ NEMS_BUILDOPT= -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_17 BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' NEMS_BUILDOPT= distclean -Will copy modules.nems and NEMS.x as fv3_17 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include" ; \ -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched --clean -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: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test_results.mk -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_17 BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' NEMS_BUILDOPT= build -Will copy modules.nems and NEMS.x as fv3_17 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/modulefiles/hera.intel/fv3 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_17" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_17 -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/conf/configure.fv3.hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh" -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/configure_rules.mk:3: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=12000000 ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ; \ -) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ -exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" all - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -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 -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL" -mv fms.mk "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh hera.intel "$PATH_CCPP" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk \ - "CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"" NO NO ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/include ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched -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 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 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 slc of variable volume_fraction_of_unfrozen_soil_moisture 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 phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top 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 sec of variable seconds_elapsed_since_model_initialization 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 kbot of variable vertical_index_at_cloud_base 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 stc of variable soil_temperature 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 xlaixy of variable leaf_area_index 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 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 phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back 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 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 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 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 v10m of variable y_wind_at_10m 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 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 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 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 nmtvr of variable number_of_statistical_measures_of_subgrid_orography 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 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 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 ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial 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 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 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 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 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 levs of variable vertical_dimension 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 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 w_0 of variable coefficient_w_0 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 pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter 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 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 phy_myj_chkqlm of variable surface_layer_evaporation_switch 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 sdec of variable sine_of_solar_declination_angle 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 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 dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep 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 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 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 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 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 sinlat of variable sine_of_latitude 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 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 do_sfcperts of variable flag_for_stochastic_surface_perturbations 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 tsfc_ice of variable surface_skin_temperature_over_ice_interstitial 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 debug of variable flag_debug 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 u1 of variable x_wind_at_lowest_model_layer_for_diag 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 do_myjsfc of variable do_myjsfc 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 gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics 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 slopetype of variable surface_slope_classification 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 levh2o of variable vertical_dimension_of_h2o_forcing_data 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 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 save_q of variable tracer_concentration_save 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 cf_upi of variable convective_cloud_fraction_for_microphysics 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial 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 dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL 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 tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave 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 forcet of variable temperature_tendency_due_to_dynamics 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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 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 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 ntchmdiag of variable number_of_chemical_tracers_for_diagnostics 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 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 dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column 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 islmsk_cice of variable sea_land_ice_mask_cice 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 pgr of variable surface_air_pressure 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 nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling 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 nscav of variable number_of_tracers_scavenged 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 zorl_ice of variable surface_roughness_length_over_ice_interstitial 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 aero_in of variable flag_for_aerosol_input_MG 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 avg_max_length of variable time_interval_for_maximum_hourly_fields 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 kind_LOGICAL of variable kind_LOGICAL 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial 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 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 mdt of variable time_step_for_remapping_for_fast_physics 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 sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model 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 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 runoff of variable total_runoff 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 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 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 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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial 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 nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation 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 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 qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio 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 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 oceanfrac of variable sea_area_fraction 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 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 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 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 ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land 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 phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back 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 con_t0c of variable temperature_at_zero_celsius 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 dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling 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 shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term 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 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 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 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 mom4ice of variable flag_for_mom4_coupling 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 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 tsfcl of variable surface_skin_temperature_over_land 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ozphys -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 ozphys_2015 -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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme noahmpdrv -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 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 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_noahmp_pre -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 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 mp_thompson_post -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 gwdps_post -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 lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme mynnrad_post -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 lsm_noah -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme dcyc2t3_post -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -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 cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -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 conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep -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 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 explicit_rainfall_rate_from_previous_timestep -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_aerosol_input_MG -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_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_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_shoc_after_convection -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 graupel_precipitation_rate_from_previous_timestep -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_precipitation_rate_from_previous_timestep -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 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 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 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_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_precipitation_rate_from_previous_timestep -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_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 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 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 162 schemes to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.mk, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 11 auto-generated caps to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.mk and /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ ./build_ccpp.sh hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk 'CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/lib from /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -DNETCDF_DIR=/apps/netcdf/4.7.0/intel/18.0.5.274 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DOPENMP=ON -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 18.0.0.20180823 --- The CXX compiler identification is Intel 18.0.0.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 --- 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 --- The Fortran compiler identification is Intel --- 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 LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") --- 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 SCHEMES from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_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: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 5 -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 3 -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 7 -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 6 -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 4 -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields_idx.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_utils.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 2 -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.c -Linking Fortran static library libccpp.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar cr libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -Linking Fortran executable test_check -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_check.dir/test_check.f90.o -o test_check -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/test_fields.dir/test_fields.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_fields.c -Linking C executable test_fields -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -Linking Fortran executable test_init_finalize -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 17 -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 9 -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 12 -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 37 -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 41 -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 42 -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 49 -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 23 -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 22 -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 25 -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 28 -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 20 -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 33 -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 45 -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 21 -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 92 -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX-I -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 39 -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 40 -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 38 -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 66 -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 15 -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 16 -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 36 -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 27 -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 44 -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 24 -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 11 -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 19 -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 26 -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 47 -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 48 -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 82 -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 89 -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 91 -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 51 -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 76 -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 72 -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 90 -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 59 -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 58 -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 62 -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 63 -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 70 -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 55 -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 94 -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 77 -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 57 -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 81 -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 56 -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 78 -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 54 -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 93 -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 50 -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 32 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 97 -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 96 -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 95 -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 68 -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 60 -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 79 -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 53 -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 71 -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 65 -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 86 -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 69 -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 88 -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 75 -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 74 -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 64 -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 84 -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 83 -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 87 -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 67 -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 80 -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 73 -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 61 -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 85 -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 52 -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 43 -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 10 -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 13 -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 14 -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 18 -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 29 -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 30 -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 31 -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 32 -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 34 -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 35 -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 46 -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -Linking Fortran static library libccppphys.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccppphys.dir/link.txt --verbose=1 -/usr/bin/ar cr 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_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/mfscu.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/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.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 CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o -/usr/bin/ranlib libccppphys.a -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[2]: Nothing to be done for `preinstall'. -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Release" --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccpp.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config-release.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_utils.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_errors.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_strings.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_suite.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_types.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_api.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccppphys.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config-release.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_stochastics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_fast_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_stochastics_cap.mod -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL on hera -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/configure.fv3 -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/modules.fv3 -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 COMP_BINDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake -C cpl FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -Duse_libMPI -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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -Duse_libMPI -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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpiifort -Duse_libMPI -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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -makefile:67: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DOVERLOAD_R4 CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -makefile:54: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -gmake -C io FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.0_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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_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_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake esmf_make_fragment FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Installation into "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC" -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; \ -gmake nems \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL CCPP_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp FV3_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" ; \ -test -x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" -CPPFLAGS += ESMF_VERSION_REVISION="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_MAJOR="8" -CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dom.Heinzeller) Tue Oct 29 16:06:35 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 16:06:35 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 16:06:35 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 16:06:35 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 16:06:35 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 16:06:35 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 16:06:35 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 16:06:35 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 16:06:35 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 16:06:35 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -mpiifort -o /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cap.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libccppdriver.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3core.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3io.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libipd.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libgfsphys.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cpl.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libstochastic_physics.a -L/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/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' -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_17.exe" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_17.exe -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_17 BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' NEMS_BUILDOPT= clean -Will copy modules.nems and NEMS.x as fv3_17 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -+ elapsed=1230 -+ echo 'Elapsed time 1230 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y finished' -Elapsed time 1230 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ readonly BUILD_TARGET=hera.intel -+ BUILD_TARGET=hera.intel -+ readonly 'MAKE_OPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' -+ readonly BUILD_NAME=fv3_18 -+ BUILD_NAME=fv3_18 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -hfe06 -+ 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 -+ 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\W\W\3\=\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* ]] -+ [[ 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* ]] -+ NEMS_BUILDOPT= -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_18 BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' NEMS_BUILDOPT= distclean -Will copy modules.nems and NEMS.x as fv3_18 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include" ; \ -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 --clean -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: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test_results.mk -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_18 BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' NEMS_BUILDOPT= build -Will copy modules.nems and NEMS.x as fv3_18 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/modulefiles/hera.intel/fv3 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_18" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_18 -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/conf/configure.fv3.hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh" -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/configure_rules.mk:3: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=12000000 ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ; \ -) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ -exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" all - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -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 -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL" -mv fms.mk "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh hera.intel "$PATH_CCPP" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk \ - "CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"" NO NO ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/include ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 -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 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 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 slc of variable volume_fraction_of_unfrozen_soil_moisture 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 phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top 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 sec of variable seconds_elapsed_since_model_initialization 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 kbot of variable vertical_index_at_cloud_base 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 stc of variable soil_temperature 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 xlaixy of variable leaf_area_index 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 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 phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back 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 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 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 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 v10m of variable y_wind_at_10m 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 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 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 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 nmtvr of variable number_of_statistical_measures_of_subgrid_orography 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 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 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 ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial 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 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 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 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 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 levs of variable vertical_dimension 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 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 w_0 of variable coefficient_w_0 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 pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter 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 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 phy_myj_chkqlm of variable surface_layer_evaporation_switch 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 sdec of variable sine_of_solar_declination_angle 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 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 dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep 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 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 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 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 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 sinlat of variable sine_of_latitude 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 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 do_sfcperts of variable flag_for_stochastic_surface_perturbations 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 tsfc_ice of variable surface_skin_temperature_over_ice_interstitial 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 debug of variable flag_debug 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 u1 of variable x_wind_at_lowest_model_layer_for_diag 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 do_myjsfc of variable do_myjsfc 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 gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics 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 slopetype of variable surface_slope_classification 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 levh2o of variable vertical_dimension_of_h2o_forcing_data 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 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 save_q of variable tracer_concentration_save 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 cf_upi of variable convective_cloud_fraction_for_microphysics 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial 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 dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL 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 tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave 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 forcet of variable temperature_tendency_due_to_dynamics 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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 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 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 ntchmdiag of variable number_of_chemical_tracers_for_diagnostics 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 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 dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column 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 islmsk_cice of variable sea_land_ice_mask_cice 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 pgr of variable surface_air_pressure 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 nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling 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 nscav of variable number_of_tracers_scavenged 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 zorl_ice of variable surface_roughness_length_over_ice_interstitial 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 aero_in of variable flag_for_aerosol_input_MG 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 avg_max_length of variable time_interval_for_maximum_hourly_fields 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 kind_LOGICAL of variable kind_LOGICAL 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial 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 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 mdt of variable time_step_for_remapping_for_fast_physics 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 sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model 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 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 runoff of variable total_runoff 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 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 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 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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial 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 nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation 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 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 qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio 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 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 oceanfrac of variable sea_area_fraction 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 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 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 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 ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land 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 phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back 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 con_t0c of variable temperature_at_zero_celsius 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 dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling 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 shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term 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 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 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 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 mom4ice of variable flag_for_mom4_coupling 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 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 tsfcl of variable surface_skin_temperature_over_land 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ozphys -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 ozphys_2015 -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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme noahmpdrv -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 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 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_noahmp_pre -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 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 mp_thompson_post -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 gwdps_post -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 lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme mynnrad_post -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 lsm_noah -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme dcyc2t3_post -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -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 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_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_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_water_to_rain -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep -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 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 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 explicit_rainfall_rate_from_previous_timestep -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_aerosol_input_MG -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_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_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_shoc_after_convection -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 graupel_precipitation_rate_from_previous_timestep -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_precipitation_rate_from_previous_timestep -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 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 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 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 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_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_precipitation_rate_from_previous_timestep -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_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 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_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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 162 schemes to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.mk, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 10 auto-generated caps to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.mk and /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ ./build_ccpp.sh hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk 'CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/lib from /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -DNETCDF_DIR=/apps/netcdf/4.7.0/intel/18.0.5.274 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DOPENMP=ON -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 18.0.0.20180823 --- The CXX compiler identification is Intel 18.0.0.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 --- 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 --- The Fortran compiler identification is Intel --- 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 LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") --- 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 SCHEMES from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_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: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 5 -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 3 -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 7 -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 6 -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 4 -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields_idx.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_utils.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 2 -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.c -Linking Fortran static library libccpp.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar cr libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -Linking Fortran executable test_check -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_check.dir/test_check.f90.o -o test_check -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/test_fields.dir/test_fields.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_fields.c -Linking C executable test_fields -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -Linking Fortran executable test_init_finalize -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 17 -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 37 -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 9 -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 47 -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 41 -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 42 -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 22 -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 23 -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 25 -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 28 -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 36 -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 20 -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 45 -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 33 -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 48 -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 21 -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX-I -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 39 -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 40 -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 38 -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 66 -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 15 -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 16 -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 27 -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 35 -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 44 -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 12 -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 24 -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 11 -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 19 -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 46 -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 82 -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 26 -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 49 -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 72 -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 83 -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 89 -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 78 -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 79 -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 80 -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 57 -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 62 -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 51 -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 76 -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 91 -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 63 -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 73 -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 58 -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 77 -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 70 -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 94 -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 86 -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 95 -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 61 -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 90 -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 54 -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 97 -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 96 -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 93 -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_regional_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_regional_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 67 -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 84 -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 60 -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 53 -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 65 -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 71 -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 32 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 55 -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 88 -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 75 -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 64 -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 85 -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 92 -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 81 -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 68 -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 59 -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 87 -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 74 -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 52 -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 43 -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 69 -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 56 -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 50 -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 10 -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 13 -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 14 -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 18 -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 29 -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 30 -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 31 -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 32 -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 34 -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -Linking Fortran static library libccppphys.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccppphys.dir/link.txt --verbose=1 -/usr/bin/ar cr 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_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/mfscu.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/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o -/usr/bin/ranlib libccppphys.a -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[2]: Nothing to be done for `preinstall'. -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Release" --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccpp.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config-release.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_utils.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_errors.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_strings.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_suite.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_types.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_api.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccppphys.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config-release.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_stochastics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_regional_c768_stochastics_cap.mod -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL on hera -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/configure.fv3 -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/modules.fv3 -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 COMP_BINDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake -C cpl FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -Duse_libMPI -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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -Duse_libMPI -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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpiifort -Duse_libMPI -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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -makefile:67: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DOVERLOAD_R4 CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -makefile:54: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -gmake -C io FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.0_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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_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_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake esmf_make_fragment FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Installation into "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC" -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; \ -gmake nems \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL CCPP_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp FV3_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" ; \ -test -x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" -CPPFLAGS += ESMF_VERSION_REVISION="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_MAJOR="8" -CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dom.Heinzeller) Tue Oct 29 16:38:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 16:38:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 16:38:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 16:38:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 16:38:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 16:38:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 16:38:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 16:38:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 16:38:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 16:38:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -mpiifort -o /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cap.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libccppdriver.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3core.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3io.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libipd.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libgfsphys.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cpl.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libstochastic_physics.a -L/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/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' -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_18.exe" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_18.exe -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_18 BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' NEMS_BUILDOPT= clean -Will copy modules.nems and NEMS.x as fv3_18 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -+ elapsed=1049 -+ echo 'Elapsed time 1049 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y finished' -Elapsed time 1049 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ readonly BUILD_TARGET=hera.intel -+ BUILD_TARGET=hera.intel -+ readonly 'MAKE_OPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y' -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y' -+ readonly BUILD_NAME=fv3_19 -+ BUILD_NAME=fv3_19 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -hfe06 -+ 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 -+ 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\W\W\3\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\R\E\P\R\O\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 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_19 BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y' NEMS_BUILDOPT=DEBUG=Y distclean -Will copy modules.nems and NEMS.x as fv3_19 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --debug --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include" ; \ -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --debug --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched --clean -INFO: Logging level set to DEBUG -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Performing clean .... -DEBUG: Executing "rm -vf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.cmake /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.sh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.cmake /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.sh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_*_cap.F90 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_static_api.F90" -DEBUG: Execution of "rm -vf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.cmake /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.sh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.cmake /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.sh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_*_cap.F90 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_static_api.F90" returned with exit code 0 - stdout: "removed ‘/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.mk’ -removed ‘/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.cmake’ -removed ‘/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.sh’ -removed ‘/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.mk’ -removed ‘/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.cmake’ -removed ‘/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.sh’ -removed ‘/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html’ -removed ‘/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex’ -removed ‘/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90’ -removed ‘/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90’ -removed ‘/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90’ -removed ‘/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90’ -removed ‘/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90’ -removed ‘/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90’ -removed ‘/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90’ -removed ‘/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90’ -removed ‘/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90’ -removed ‘/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90’ -removed ‘/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_static_api.F90’" - stderr: "" -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test_results.mk -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_19 BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y' NEMS_BUILDOPT=DEBUG=Y build -Will copy modules.nems and NEMS.x as fv3_19 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/modulefiles/hera.intel/fv3 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_19" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_19 -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/conf/configure.fv3.hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh" -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/configure_rules.mk:3: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=12000000 ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ; \ -) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ -exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" all - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DDEBUG -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/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 -DDEBUG -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DDEBUG -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL" -mv fms.mk "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --debug --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh hera.intel "$PATH_CCPP" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk \ - "CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"" NO NO ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/include ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --debug --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched -INFO: Logging level set to DEBUG -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 ... -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 -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 -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': [1158, 1397], 'GFS_control_type': [458, 957], 'GFS_interstitial_type': [1407, 1720], 'GFS_tbd_type': [1010, 1096], 'GFS_sfcprop_type': [192, 336], 'GFS_coupling_type': [344, 449], 'GFS_statein_type': [144, 168], 'GFS_cldprop_type': [1104, 1112], 'GFS_data_type': [1732, 1742], 'GFS_radtend_type': [1120, 1150], 'GFS_grid_type': [965, 1002], 'GFS_stateout_type': [176, 184], 'GFS_init_type': [93, 136]})]) -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, 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 -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, 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_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, 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, number_of_hydrometeors, 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_zhao_carr_pdf_microphysics_scheme, flag_for_morrison_gettelman_microphysics_scheme, coefficient_from_cloud_ice_to_snow, coefficient_from_cloud_water_to_rain, coefficient_for_evaporation_of_rainfall, cloud_condensed_water_conversion_threshold, 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, 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, vegetation_type_dataset_choice, soil_type_dataset_choice, 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_mom4_coupling, flag_for_ras_deep_convection, 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_mass_flux_deep_convection_scheme, number_of_statistical_measures_of_subgrid_orography, 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, 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, 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_gaussian_spatial_filter, flag_for_combination_of_sppt_with_isppt_deep, 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_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: 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, surface_x_momentum_flux_for_coupling_interstitial, surface_y_momentum_flux_for_coupling_interstitial, surface_upward_sensible_heat_flux_for_coupling_interstitial, surface_upward_latent_heat_flux_for_coupling_interstitial, 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_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, 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, 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, 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_upwelling_longwave_flux_for_coupling_interstitial, 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 -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, 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, 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, temperature_tendency_due_to_dynamics, moisture_tendency_due_to_dynamics, temperature_from_previous_timestep, moisture_from_previous_timestep, conv_activity_counter, 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, 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, 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 -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, tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep, tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep, tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep, tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep, fraction_of_cellular_automata_for_deep_convection, convective_available_potential_energy_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_timestep, tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep, surface_diffused_shortwave_albedo, cosine_of_zenith_angle, surface_midlayer_air_temperature_in_longwave_radiation, surface_longwave_emissivity, tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep, tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep, 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, 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 ccpp_types.F90 with registry OrderedDict([('ccpp_types', {'ccpp_t': [131, 144], 'ccpp_subcycle_t': [85, 89], 'ccpp_suite_t': [108, 116], 'ccpp_field_t': [44, 52], 'ccpp_function_t': [58, 62], 'ccpp_group_t': [96, 100], 'ccpp_scheme_t': [68, 77]})]) -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 -DEBUG: Variables in derived type ccpp_subcycle_t: -DEBUG: Variables in derived type ccpp_suite_t: -DEBUG: Variables in derived type ccpp_field_t: -DEBUG: Variables in derived type ccpp_function_t: -DEBUG: Variables in derived type ccpp_group_t: -DEBUG: Variables in derived type ccpp_scheme_t: -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 -DEBUG: Updating local name of variable lw_fluxes_sfc from sfcflw to GFS_Data(cdata%blk_no)%Radtend%sfcflw -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 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 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 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 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 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 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 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 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 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 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 vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -DEBUG: Updating local name of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from vconvtend to GFS_Data(cdata%blk_no)%Coupling%vconvtend -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 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 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 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 qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -DEBUG: Updating local name of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from qconvtend to GFS_Data(cdata%blk_no)%Coupling%qconvtend -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable index_for_ice_friendly_aerosols from ntia to GFS_Control%ntia -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 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 -DEBUG: Updating local name of variable index_for_rain_water from ntrw to GFS_Control%ntrw -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 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 -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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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_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 -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 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 -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 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_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 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)%Tbd%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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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)%Tbd%iceprv -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 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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable in_number_concentration from in_nm to GFS_Data(cdata%blk_no)%Tbd%in_nm -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 -DEBUG: Updating local name of variable ccpp_block_number from blk_no to cdata%blk_no -DEBUG: Updating local name of variable horizontal_dimension from blksz2(ccpp_block_number) to GFS_Control%blksz2(cdata%blk_no) -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 GFS_statein_type of variable GFS_statein_type from new to old metadata -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 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 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 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 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 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 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 swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from swhc to GFS_Data(cdata%blk_no)%Radtend%swhc -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 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 -DEBUG: Updating local name of variable starting_y_direction_index from js to CCPP_interstitial%js -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 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 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 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 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 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 -DEBUG: Updating local name of variable index_for_ozone from ntoz to GFS_Control%ntoz -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable ending_y_direction_index from je to CCPP_interstitial%je -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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable index_for_graupel_effective_radius from ngeffr to GFS_Control%ngeffr -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 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 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 -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 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 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 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 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 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 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 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 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 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 tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from tconvtend to GFS_Data(cdata%blk_no)%Coupling%tconvtend -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 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 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 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 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 -DEBUG: Updating local name of variable cloud_condensed_water_conversion_threshold from wminco to GFS_Control%wminco -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 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 -DEBUG: Updating local name of variable surface_wind_stress from stress to GFS_Interstitial(cdata%thrd_no)%stress -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 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 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 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 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 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 -DEBUG: Updating local name of variable height_of_mountain_blocking from zmtb to GFS_Interstitial(cdata%thrd_no)%zmtb -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 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 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 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 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 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 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 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 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 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 -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 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 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 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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from htrlw to GFS_Data(cdata%blk_no)%Radtend%htrlw -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 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 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial from new to old metadata -DEBUG: Updating local name of variable surface_x_momentum_flux_for_coupling_interstitial from dusfc_cice to GFS_Interstitial(cdata%thrd_no)%dusfc_cice -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 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 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 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 -DEBUG: Variable index_for_rain_effective_radius was in old metadata format and has already been converted -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 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 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 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 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 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 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 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 -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 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 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 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 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 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 -DEBUG: Variable index_for_ice_friendly_aerosols was in old metadata format and has already been converted -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 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 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 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 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 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 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 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 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 -DEBUG: Variable topfsw_type is in old metadata format, no conversion necessary -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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable index_for_cloud_amount from ntclamt to GFS_Control%ntclamt -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Variable index_for_liquid_cloud_condensate was in old metadata format and has already been converted -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable index_for_ice_cloud_number_concentration from ntinc to GFS_Control%ntinc -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -DEBUG: Updating local name of variable convective_available_potential_energy_for_coupling from cape to GFS_Data(cdata%blk_no)%Coupling%cape -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 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)%Tbd%dsnowprv -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 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 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 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 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 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 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 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 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_for_ozone was in old metadata format and has already been converted -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 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 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 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 -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 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 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 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 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 lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from lwhc to GFS_Data(cdata%blk_no)%Radtend%lwhc -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 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 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 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 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 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 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 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 -DEBUG: Variable index_for_water_vapor was in old metadata format and has already been converted -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 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 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 -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 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 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 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 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 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 -DEBUG: Updating local name of variable index_for_graupel from ntgl to GFS_Control%ntgl -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 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 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 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 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 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 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 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 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 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 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 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 -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 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 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 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 -DEBUG: Variable index_for_liquid_cloud_number_concentration was in old metadata format and has already been converted -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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable array_dimension_of_2d_arrays_for_microphysics from num_p2d to GFS_Control%num_p2d -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 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 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 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 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 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 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 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 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 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 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 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 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)%Tbd%draincprv -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 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 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 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 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 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 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 htsw0 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 htsw0 to GFS_Data(cdata%blk_no)%Tbd%htsw0 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -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 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 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 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 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 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 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) -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 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 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 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 -DEBUG: Variable index_for_water_friendly_aerosols was in old metadata format and has already been converted -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 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 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)%Tbd%snowprv -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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)%Tbd%dgraupelprv -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 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 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 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 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 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 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 -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) -DEBUG: Variable sfcfsw_type is in old metadata format, no conversion necessary -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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable flag_for_microphysics_scheme from imp_physics to GFS_Control%imp_physics -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -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 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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable number_of_gases_for_multi_gases_physics from ngas to CCPP_interstitial%ngas -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)%Tbd%diceprv -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 -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 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 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 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 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 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 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 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 -DEBUG: Variable index_for_graupel was in old metadata format and has already been converted -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 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 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 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 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 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 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 -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 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 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 htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from htrsw to GFS_Data(cdata%blk_no)%Radtend%htrsw -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 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 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 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 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 -DEBUG: Variable index_for_rain_water was in old metadata format and has already been converted -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 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: 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 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 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 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 -DEBUG: Updating local name of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from indcld to GFS_Control%indcld -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -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 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 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 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 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 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 -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 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 -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 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 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 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 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 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 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 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 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 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 blksz(ccpp_block_number) of variable horizontal_loop_extent 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_loop_extent from blksz(ccpp_block_number) to GFS_Control%blksz(cdata%blk_no) -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 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 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 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 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 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 -DEBUG: Updating local name of variable density_of_frozen_precipitation from rhofr to GFS_Data(cdata%blk_no)%Sfcprop%rhofr -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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable index_for_turbulent_kinetic_energy from ntke to GFS_Control%ntke -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 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 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 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 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 -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 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 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial from new to old metadata -DEBUG: Updating local name of variable surface_upward_latent_heat_flux_for_coupling_interstitial from dqsfc_cice to GFS_Interstitial(cdata%thrd_no)%dqsfc_cice -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 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 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 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 -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 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 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 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 -DEBUG: Updating local name of variable number_of_days_in_year from yearlen to GFS_Control%yearlen -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 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 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 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 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 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 -DEBUG: Variable index_for_cloud_amount was in old metadata format and has already been converted -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 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 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 -DEBUG: Updating local name of variable index_for_ice_effective_radius from nieffr to GFS_Control%nieffr -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 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 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 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 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 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 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 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 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 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 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 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial from new to old metadata -DEBUG: Updating local name of variable surface_upward_sensible_heat_flux_for_coupling_interstitial from dtsfc_cice to GFS_Interstitial(cdata%thrd_no)%dtsfc_cice -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 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 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 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 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 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 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 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 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 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)%Tbd%drainncprv -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -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 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 flipv of variable flag_flip from new to old metadata -DEBUG: Updating local name of variable flag_flip from flipv to GFS_Control%flipv -DEBUG: Variable index_for_graupel_effective_radius was in old metadata format and has already been converted -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 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 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 htswc 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 htswc to GFS_Data(cdata%blk_no)%Tbd%htswc -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 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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 con_p0 of variable standard_atmospheric_pressure from new to old metadata -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -DEBUG: Variable index_for_snow_effective_radius was in old metadata format and has already been converted -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 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 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 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 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 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 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 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 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 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 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 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 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 -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 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 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 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 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 -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 -DEBUG: Variable index_for_cloud_liquid_water_effective_radius was in old metadata format and has already been converted -INFO: Converting local name aero_in of variable flag_for_aerosol_input_MG from new to old metadata -DEBUG: Updating local name of variable flag_for_aerosol_input_MG from aero_in to GFS_Control%aero_in -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 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 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 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 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 -DEBUG: Variable index_for_graupel_number_concentration was in old metadata format and has already been converted -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 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 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 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 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 kind_LOGICAL of variable kind_LOGICAL from new to old metadata -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 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 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) -DEBUG: Variable index_for_ice_effective_radius was in old metadata format and has already been converted -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 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 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 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 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 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 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 -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) -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 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 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 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 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 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 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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial from new to old metadata -DEBUG: Updating local name of variable surface_y_momentum_flux_for_coupling_interstitial from dvsfc_cice to GFS_Interstitial(cdata%thrd_no)%dvsfc_cice -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -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)%Tbd%raincprv -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 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 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) -DEBUG: Variable index_for_turbulent_kinetic_energy was in old metadata format and has already been converted -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 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 -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 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 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 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 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 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 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 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 -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) -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 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 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 qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy 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 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 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 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 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 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 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 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 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 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 -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 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 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 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 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) -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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial from new to old metadata -DEBUG: Updating local name of variable surface_upwelling_longwave_flux_for_coupling_interstitial from ulwsfc_cice to GFS_Interstitial(cdata%thrd_no)%ulwsfc_cice -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 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 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 -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 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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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) -DEBUG: Variable index_for_snow_number_concentration was in old metadata format and has already been converted -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 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 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 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 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 -DEBUG: Variable ccpp_thread_number was in old metadata format and has already been converted -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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Updating local name of variable flag_for_ozone_physics from oz_phys to GFS_Control%oz_phys -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -DEBUG: Variable array_dimension_of_2d_arrays_for_microphysics was in old metadata format and has already been converted -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 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 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 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 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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d was in old metadata format and has already been converted -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 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 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 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 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 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 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 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 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 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 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 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 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 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 -DEBUG: Variable index_for_ice_cloud_number_concentration was in old metadata format and has already been converted -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 -DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from htlw0 to GFS_Data(cdata%blk_no)%Tbd%htlw0 -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 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 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 htlwc 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 htlwc to GFS_Data(cdata%blk_no)%Tbd%htlwc -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 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 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 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 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 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 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 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 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 con_t0c of variable temperature_at_zero_celsius from new to old metadata -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 -DEBUG: Variable index_for_cloud_fraction_in_3d_arrays_for_microphysics was in old metadata format and has already been converted -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 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 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 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 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 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 -DEBUG: Updating local name of variable instantaneous_dry_deposition from drydep to GFS_Data(cdata%blk_no)%Intdiag%drydep -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 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 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 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 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 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 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 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 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 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 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 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 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 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 isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -DEBUG: Updating local name of variable flag_for_combination_of_sppt_with_isppt_deep from isppt_deep to GFS_Control%isppt_deep -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 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 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 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 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 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 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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -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 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 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 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 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 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 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 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 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 uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -DEBUG: Updating local name of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from uconvtend to GFS_Data(cdata%blk_no)%Coupling%uconvtend -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 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 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 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 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 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 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 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 mom4ice of variable flag_for_mom4_coupling from new to old metadata -DEBUG: Updating local name of variable flag_for_mom4_coupling from mom4ice to GFS_Control%mom4ice -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 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 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 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 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 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 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)%Tbd%graupelprv -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 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 -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -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 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: Metadata table for model FV3 written to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 GFS_surface_composites.F90 with registry OrderedDict([('GFS_surface_composites_pre', {'GFS_surface_composites_pre': {'GFS_surface_composites_pre_run': [17, 147], 'GFS_surface_composites_pre_finalize': [12, 13], 'GFS_surface_composites_pre_init': [10, 11]}}), ('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, 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': [17, 147], 'GFS_surface_composites_pre_finalize': [12, 13], 'GFS_surface_composites_pre_init': [10, 11]}}), ('GFS_surface_composites_inter', {'GFS_surface_composites_inter': {'GFS_surface_composites_inter_run': [162, 198], 'GFS_surface_composites_inter_init': [155, 156], 'GFS_surface_composites_inter_finalize': [157, 158]}}), ('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 -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': [17, 147], 'GFS_surface_composites_pre_finalize': [12, 13], 'GFS_surface_composites_pre_init': [10, 11]}}), ('GFS_surface_composites_inter', {'GFS_surface_composites_inter': {'GFS_surface_composites_inter_run': [162, 198], 'GFS_surface_composites_inter_init': [155, 156], 'GFS_surface_composites_inter_finalize': [157, 158]}}), ('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, 414]}})]) -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, 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, 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 -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, 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, 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 sfc_ocean.F with registry OrderedDict([('sfc_ocean', {'sfc_ocean': {'sfc_ocean_finalize': [11, 12], 'sfc_ocean_init': [7, 8], 'sfc_ocean_run': [18, 134]}})]) -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 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 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 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 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, kinematic_surface_upward_latent_heat_flux, 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 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, tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step, 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, 93], '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 -DEBUG: Variables in subroutine GFS_SCNV_generic_post_init: -DEBUG: Variables in subroutine GFS_SCNV_generic_post_finalize: -DEBUG: Parsing file GFS_rrtmg_pre.F90 with registry OrderedDict([('GFS_rrtmg_pre', {'GFS_rrtmg_pre': {'GFS_rrtmg_pre_finalize': [622, 623], 'GFS_rrtmg_pre_init': [9, 10], 'GFS_rrtmg_pre_run': [16, 619]}})]) -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, 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: 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, 615], '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, soil_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, soil_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 samfdeepcnv.f with registry OrderedDict([('samfdeepcnv', {'samfdeepcnv': {'samfdeepcnv_run': [63, 2759], '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, flag_for_cellular_automata, fraction_of_cellular_automata_for_deep_convection, 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 satmedmfvdif.F with registry OrderedDict([('satmedmfvdif', {'satmedmfvdif': {'satmedmfvdif_init': [6, 7], 'satmedmfvdif_finalize': [8, 9], 'satmedmfvdif_run': [30, 1450]}})]) -DEBUG: Module name: satmedmfvdif -DEBUG: Scheme name: satmedmfvdif -DEBUG: Variables in subroutine satmedmfvdif_init: -DEBUG: Variables in subroutine satmedmfvdif_finalize: -DEBUG: Variables in subroutine satmedmfvdif_run: 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, kinematic_surface_upward_latent_heat_flux, 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, ccpp_error_message, ccpp_error_flag -DEBUG: Parsing file ozphys.f with registry OrderedDict([('ozphys', {'ozphys': {'ozphys_run': [27, 158], 'ozphys_finalize': [15, 16], 'ozphys_init': [9, 10]}})]) -DEBUG: Skipping blank table ozphys_finalize -DEBUG: Skipping blank table ozphys_init -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: -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 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_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': [31, 137], 'ozphys_2015_finalize': [13, 14], 'ozphys_2015_init': [7, 8]}})]) -DEBUG: Skipping blank table ozphys_2015_finalize -DEBUG: Skipping blank table ozphys_2015_init -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: -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, 21], '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', {})]) -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, 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, 21], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [27, 28], 'GFS_suite_interstitial_phys_reset_run': [32, 43], 'GFS_suite_interstitial_phys_reset_init': [25, 26]}}), ('GFS_suite_interstitial_1', {}), ('GFS_suite_interstitial_2', {}), ('GFS_suite_stateout_reset', {}), ('GFS_suite_stateout_update', {}), ('GFS_suite_interstitial_3', {}), ('GFS_suite_interstitial_4', {})]) -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, ccpp_error_message, ccpp_error_flag, GFS_control_type_instance -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, 21], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [27, 28], 'GFS_suite_interstitial_phys_reset_run': [32, 43], 'GFS_suite_interstitial_phys_reset_init': [25, 26]}}), ('GFS_suite_interstitial_1', {'GFS_suite_interstitial_1': {'GFS_suite_interstitial_1_init': [47, 48], 'GFS_suite_interstitial_1_finalize': [49, 50], 'GFS_suite_interstitial_1_run': [54, 94]}}), ('GFS_suite_interstitial_2', {}), ('GFS_suite_stateout_reset', {}), ('GFS_suite_stateout_update', {}), ('GFS_suite_interstitial_3', {}), ('GFS_suite_interstitial_4', {})]) -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, 21], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [27, 28], 'GFS_suite_interstitial_phys_reset_run': [32, 43], 'GFS_suite_interstitial_phys_reset_init': [25, 26]}}), ('GFS_suite_interstitial_1', {'GFS_suite_interstitial_1': {'GFS_suite_interstitial_1_init': [47, 48], 'GFS_suite_interstitial_1_finalize': [49, 50], 'GFS_suite_interstitial_1_run': [54, 94]}}), ('GFS_suite_interstitial_2', {'GFS_suite_interstitial_2': {'GFS_suite_interstitial_2_init': [100, 101], 'GFS_suite_interstitial_2_finalize': [102, 103], 'GFS_suite_interstitial_2_run': [109, 253]}}), ('GFS_suite_stateout_reset', {}), ('GFS_suite_stateout_update', {}), ('GFS_suite_interstitial_3', {}), ('GFS_suite_interstitial_4', {})]) -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_timestep, tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep, 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, 21], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [27, 28], 'GFS_suite_interstitial_phys_reset_run': [32, 43], 'GFS_suite_interstitial_phys_reset_init': [25, 26]}}), ('GFS_suite_interstitial_1', {'GFS_suite_interstitial_1': {'GFS_suite_interstitial_1_init': [47, 48], 'GFS_suite_interstitial_1_finalize': [49, 50], 'GFS_suite_interstitial_1_run': [54, 94]}}), ('GFS_suite_interstitial_2', {'GFS_suite_interstitial_2': {'GFS_suite_interstitial_2_init': [100, 101], 'GFS_suite_interstitial_2_finalize': [102, 103], 'GFS_suite_interstitial_2_run': [109, 253]}}), ('GFS_suite_stateout_reset', {'GFS_suite_stateout_reset': {'GFS_suite_stateout_reset_finalize': [259, 260], 'GFS_suite_stateout_reset_init': [257, 258], 'GFS_suite_stateout_reset_run': [264, 284]}}), ('GFS_suite_stateout_update', {}), ('GFS_suite_interstitial_3', {}), ('GFS_suite_interstitial_4', {})]) -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, 21], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [27, 28], 'GFS_suite_interstitial_phys_reset_run': [32, 43], 'GFS_suite_interstitial_phys_reset_init': [25, 26]}}), ('GFS_suite_interstitial_1', {'GFS_suite_interstitial_1': {'GFS_suite_interstitial_1_init': [47, 48], 'GFS_suite_interstitial_1_finalize': [49, 50], 'GFS_suite_interstitial_1_run': [54, 94]}}), ('GFS_suite_interstitial_2', {'GFS_suite_interstitial_2': {'GFS_suite_interstitial_2_init': [100, 101], 'GFS_suite_interstitial_2_finalize': [102, 103], 'GFS_suite_interstitial_2_run': [109, 253]}}), ('GFS_suite_stateout_reset', {'GFS_suite_stateout_reset': {'GFS_suite_stateout_reset_finalize': [259, 260], 'GFS_suite_stateout_reset_init': [257, 258], 'GFS_suite_stateout_reset_run': [264, 284]}}), ('GFS_suite_stateout_update', {'GFS_suite_stateout_update': {'GFS_suite_stateout_update_init': [288, 289], 'GFS_suite_stateout_update_run': [295, 318], 'GFS_suite_stateout_update_finalize': [290, 291]}}), ('GFS_suite_interstitial_3', {}), ('GFS_suite_interstitial_4', {})]) -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, 21], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [27, 28], 'GFS_suite_interstitial_phys_reset_run': [32, 43], 'GFS_suite_interstitial_phys_reset_init': [25, 26]}}), ('GFS_suite_interstitial_1', {'GFS_suite_interstitial_1': {'GFS_suite_interstitial_1_init': [47, 48], 'GFS_suite_interstitial_1_finalize': [49, 50], 'GFS_suite_interstitial_1_run': [54, 94]}}), ('GFS_suite_interstitial_2', {'GFS_suite_interstitial_2': {'GFS_suite_interstitial_2_init': [100, 101], 'GFS_suite_interstitial_2_finalize': [102, 103], 'GFS_suite_interstitial_2_run': [109, 253]}}), ('GFS_suite_stateout_reset', {'GFS_suite_stateout_reset': {'GFS_suite_stateout_reset_finalize': [259, 260], 'GFS_suite_stateout_reset_init': [257, 258], 'GFS_suite_stateout_reset_run': [264, 284]}}), ('GFS_suite_stateout_update', {'GFS_suite_stateout_update': {'GFS_suite_stateout_update_init': [288, 289], 'GFS_suite_stateout_update_run': [295, 318], 'GFS_suite_stateout_update_finalize': [290, 291]}}), ('GFS_suite_interstitial_3', {'GFS_suite_interstitial_3': {'GFS_suite_interstitial_3_run': [331, 480], 'GFS_suite_interstitial_3_finalize': [324, 325], 'GFS_suite_interstitial_3_init': [322, 323]}}), ('GFS_suite_interstitial_4', {})]) -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_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, 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, 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, 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, 21], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [27, 28], 'GFS_suite_interstitial_phys_reset_run': [32, 43], 'GFS_suite_interstitial_phys_reset_init': [25, 26]}}), ('GFS_suite_interstitial_1', {'GFS_suite_interstitial_1': {'GFS_suite_interstitial_1_init': [47, 48], 'GFS_suite_interstitial_1_finalize': [49, 50], 'GFS_suite_interstitial_1_run': [54, 94]}}), ('GFS_suite_interstitial_2', {'GFS_suite_interstitial_2': {'GFS_suite_interstitial_2_init': [100, 101], 'GFS_suite_interstitial_2_finalize': [102, 103], 'GFS_suite_interstitial_2_run': [109, 253]}}), ('GFS_suite_stateout_reset', {'GFS_suite_stateout_reset': {'GFS_suite_stateout_reset_finalize': [259, 260], 'GFS_suite_stateout_reset_init': [257, 258], 'GFS_suite_stateout_reset_run': [264, 284]}}), ('GFS_suite_stateout_update', {'GFS_suite_stateout_update': {'GFS_suite_stateout_update_init': [288, 289], 'GFS_suite_stateout_update_run': [295, 318], 'GFS_suite_stateout_update_finalize': [290, 291]}}), ('GFS_suite_interstitial_3', {'GFS_suite_interstitial_3': {'GFS_suite_interstitial_3_run': [331, 480], 'GFS_suite_interstitial_3_finalize': [324, 325], 'GFS_suite_interstitial_3_init': [322, 323]}}), ('GFS_suite_interstitial_4', {'GFS_suite_interstitial_4': {'GFS_suite_interstitial_4_finalize': [486, 487], 'GFS_suite_interstitial_4_run': [491, 580], 'GFS_suite_interstitial_4_init': [484, 485]}})]) -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, 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_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, index_for_liquid_cloud_number_concentration, index_for_ice_cloud_number_concentration, pi, instantaneous_water_vapor_specific_humidity_tendency_due_to_convection -DEBUG: Variables in subroutine GFS_suite_interstitial_4_init: -DEBUG: Parsing file samfshalcnv.f with registry OrderedDict([('samfshalcnv', {'samfshalcnv': {'samfshalcnv_run': [43, 1782], 'samfshalcnv_finalize': [17, 18], 'samfshalcnv_init': [11, 12]}}), ('samfshalcnv_post', {})]) -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 samfshalcnv.f with registry OrderedDict([('samfshalcnv', {'samfshalcnv': {'samfshalcnv_run': [43, 1782], 'samfshalcnv_finalize': [17, 18], 'samfshalcnv_init': [11, 12]}}), ('samfshalcnv_post', {'samfshalcnv_post': {'samfshalcnv_post_run': [1793, 1839], 'samfshalcnv_post_finalize': [1846, 1847], 'samfshalcnv_post_init': [1842, 1843]}})]) -DEBUG: Module name: samfshalcnv_post -DEBUG: Scheme name: samfshalcnv_post -DEBUG: Variables in subroutine samfshalcnv_post_run: horizontal_loop_extent, vertical_dimension, lwe_thickness_of_shallow_convective_precipitation_amount, convective_cloud_water_mixing_ratio, convective_cloud_cover, ccpp_error_message, ccpp_error_flag, flag_diagnostics, flag_shallow_convective_cloud, dynamics_to_physics_timestep_ratio, 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_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 -DEBUG: Variables in subroutine samfshalcnv_post_finalize: -DEBUG: Variables in subroutine samfshalcnv_post_init: -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': [23, 24], 'noahmpdrv_run': [33, 699], 'noahmpdrv_init': [11, 22]}})]) -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_canopy_heat_storage, 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 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, kinematic_surface_upward_latent_heat_flux, 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 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, 159], '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, 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, 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, surface_upwelling_longwave_flux_for_coupling, surface_upwelling_longwave_flux_for_coupling_interstitial, surface_x_momentum_flux_for_coupling_interstitial, surface_y_momentum_flux_for_coupling_interstitial, surface_upward_sensible_heat_flux_for_coupling_interstitial, surface_upward_latent_heat_flux_for_coupling_interstitial, sea_ice_temperature, sea_surface_temperature, sea_ice_concentration, sea_ice_thickness, flag_nonzero_land_surface_fraction, flag_nonzero_sea_ice_surface_fraction, flag_nonzero_wet_surface_fraction, wind_speed_at_lowest_model_layer, x_wind_at_lowest_model_layer, y_wind_at_lowest_model_layer, surface_wind_enhancement_due_to_convection, 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, 159], 'GFS_surface_generic_pre_init': [10, 11]}}), ('GFS_surface_generic_post', {'GFS_surface_generic_post': {'GFS_surface_generic_post_run': [176, 282], 'GFS_surface_generic_post_finalize': [171, 172], 'GFS_surface_generic_post_init': [169, 170]}})]) -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, flag_nonzero_sea_ice_surface_fraction, flag_nonzero_wet_surface_fraction, x_wind_at_lowest_model_layer, y_wind_at_lowest_model_layer, ccpp_error_message, ccpp_error_flag, flag_for_wave_coupling, flag_diagnostics, 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_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 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 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, 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, 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 GFS_debug.F90 with registry OrderedDict([('GFS_diagtoscreen', {'GFS_diagtoscreen': {'GFS_diagtoscreen_init': [26, 27], 'GFS_diagtoscreen_finalize': [28, 29], 'GFS_diagtoscreen_run': [33, 486]}}), ('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, 486]}}), ('GFS_interstitialtoscreen', {'GFS_interstitialtoscreen': {'GFS_interstitialtoscreen_finalize': [654, 655], 'GFS_interstitialtoscreen_run': [659, 733], 'GFS_interstitialtoscreen_init': [652, 653]}}), ('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, 486]}}), ('GFS_interstitialtoscreen', {'GFS_interstitialtoscreen': {'GFS_interstitialtoscreen_finalize': [654, 655], 'GFS_interstitialtoscreen_run': [659, 733], 'GFS_interstitialtoscreen_init': [652, 653]}}), ('GFS_abort', {'GFS_abort': {'GFS_abort_init': [739, 740], 'GFS_abort_run': [746, 763], 'GFS_abort_finalize': [741, 742]}}), ('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, 486]}}), ('GFS_interstitialtoscreen', {'GFS_interstitialtoscreen': {'GFS_interstitialtoscreen_finalize': [654, 655], 'GFS_interstitialtoscreen_run': [659, 733], 'GFS_interstitialtoscreen_init': [652, 653]}}), ('GFS_abort', {'GFS_abort': {'GFS_abort_init': [739, 740], 'GFS_abort_run': [746, 763], 'GFS_abort_finalize': [741, 742]}}), ('GFS_checkland', {'GFS_checkland': {'GFS_checkland_run': [776, 848], 'GFS_checkland_finalize': [771, 772], 'GFS_checkland_init': [769, 770]}})]) -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 module_MYNNrad_pre.F90 with registry OrderedDict([('mynnrad_pre', {'mynnrad_pre': {'mynnrad_pre_init': [6, 7], 'mynnrad_pre_run': [27, 93], '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, 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 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 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, kinematic_surface_upward_latent_heat_flux, 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 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, tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step, ccpp_error_message, ccpp_error_flag -DEBUG: Variables in subroutine rrtmg_lw_post_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_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 -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, 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 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 cu_ntiedtke.F90 with registry OrderedDict([('cu_ntiedtke', {'cu_ntiedtke': {'cu_ntiedtke_init': [77, 93], 'cu_ntiedtke_finalize': [98, 99], 'cu_ntiedtke_run': [112, 295]}})]) -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, 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_total_tracers, 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 cires_ugwp_post.F90 with registry OrderedDict([('cires_ugwp_post', {'cires_ugwp_post': {'cires_ugwp_post_init': [8, 9], 'cires_ugwp_post_run': [16, 67], 'cires_ugwp_post_finalize': [70, 71]}})]) -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, flag_diagnostics, flag_diagnostics_3D, instantaneous_x_stress_due_to_gravity_wave_drag, instantaneous_y_stress_due_to_gravity_wave_drag, 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, cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag, ccpp_error_message, ccpp_error_flag -DEBUG: Variables in subroutine cires_ugwp_post_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, kinematic_surface_upward_latent_heat_flux, 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 sfc_diff.f with registry OrderedDict([('sfc_diff', {'sfc_diff': {'sfc_diff_init': [12, 13], 'sfc_diff_finalize': [14, 15], 'sfc_diff_run': [52, 290]}})]) -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 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 sfc_noahmp_pre.F90 with registry OrderedDict([('sfc_noahmp_pre', {'sfc_noahmp_pre': {'sfc_noahmp_pre_finalize': [10, 11], 'sfc_noahmp_pre_init': [8, 9], 'sfc_noahmp_pre_run': [16, 42]}})]) -DEBUG: Module name: sfc_noahmp_pre -DEBUG: Scheme name: sfc_noahmp_pre -DEBUG: Variables in subroutine sfc_noahmp_pre_finalize: -DEBUG: Variables in subroutine sfc_noahmp_pre_init: -DEBUG: Variables in subroutine sfc_noahmp_pre_run: horizontal_loop_extent, flag_for_land_surface_scheme, flag_for_noahmp_land_surface_scheme, flag_for_microphysics_scheme, flag_for_gfdl_microphysics_scheme, flag_for_morrison_gettelman_microphysics_scheme, time_step_for_physics, 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, explicit_rainfall_rate_from_previous_timestep, convective_precipitation_rate_from_previous_timestep, ice_precipitation_rate_from_previous_timestep, snow_precipitation_rate_from_previous_timestep, graupel_precipitation_rate_from_previous_timestep, 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', {})]) -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, mass_fraction_of_convective_cloud_liquid_water, mass_fraction_of_convective_cloud_ice, convective_cloud_fraction_for_microphysics, 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 m_micro.F90 with registry OrderedDict([('m_micro', {'m_micro': {'m_micro_run': [71, 1239], 'm_micro_init': [17, 50], 'm_micro_finalize': [55, 56]}})]) -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_timestep, tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep, 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, flag_for_aerosol_input_MG, in_number_concentration, ccn_number_concentration, flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics, flag_skip_macro, flag_print, mg_tuning_factor_for_alphas, mg_minimum_cloud_condensed_water_and_ice_mixing_ratio, flag_for_pdf_for_morrison_gettelman_microphysics_scheme, horizontal_index_of_printed_column, 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, 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 gfdl_fv_sat_adj.F90 with registry OrderedDict([('fv_sat_adj', {'fv_sat_adj': {'fv_sat_adj_finalize': [155, 172], 'fv_sat_adj_run': [186, 307], 'fv_sat_adj_init': [104, 149]}})]) -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 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 gcm_shoc.F90 with registry OrderedDict([('shoc', {'shoc': {'shoc_finalize': [11, 12], 'shoc_init': [9, 10], 'shoc_run': [18, 144]}})]) -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, flag_for_shoc, flag_for_shoc_after_convection, flag_mg3_as_mg2, flag_for_microphysics_scheme, flag_for_gfdl_microphysics_scheme, flag_for_zhao_carr_microphysics_scheme, flag_for_zhao_carr_pdf_microphysics_scheme, flag_for_morrison_gettelman_microphysics_scheme, number_of_frozen_precipitation_species, 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, 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, time_step_for_physics, mpi_rank, air_pressure, 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, kinematic_surface_upward_latent_heat_flux, prandtl_number, flag_skip_macro, ice_water_mixing_ratio_convective_transport_tracer, cloud_condensed_water_mixing_ratio_convective_transport_tracer, cloud_condensed_water_mixing_ratio_updated_by_physics, cloud_droplet_number_concentration_updated_by_physics, ice_number_concentration_updated_by_physics, air_temperature_updated_by_physics, water_vapor_specific_humidity_updated_by_physics, 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_rrtmg_post.F90 with registry OrderedDict([('GFS_rrtmg_post', {'GFS_rrtmg_post': {'GFS_rrtmg_post_init': [8, 9], 'GFS_rrtmg_post_run': [13, 140], 'GFS_rrtmg_post_finalize': [143, 144]}})]) -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, ccpp_error_message, ccpp_error_flag -DEBUG: Variables in subroutine GFS_rrtmg_post_finalize: -DEBUG: Parsing file GFS_GWD_generic.F90 with registry OrderedDict([('GFS_GWD_generic_pre', {'GFS_GWD_generic_pre': {'GFS_GWD_generic_pre_run': [15, 84], 'GFS_GWD_generic_pre_finalize': [91, 92], 'GFS_GWD_generic_pre_init': [7, 8]}})]) -DEBUG: Skipping blank table GFS_GWD_generic_pre_finalize -DEBUG: Skipping blank table GFS_GWD_generic_pre_init -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 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 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_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, 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, 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, time_step_for_physics -DEBUG: Variables in subroutine GFS_MP_generic_post_finalize: -DEBUG: Parsing file cu_gf_driver.F90 with registry OrderedDict([('cu_gf_driver', {'cu_gf_driver': {'cu_gf_driver_run': [54, 665], 'cu_gf_driver_init': [17, 33], 'cu_gf_driver_finalize': [38, 39]}})]) -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: 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, 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 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, 205], '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, 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_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, 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, 205], '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': [209, 210], 'GFS_PBL_generic_post_finalize': [211, 212], 'GFS_PBL_generic_post_run': [216, 468]}})]) -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, 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_chemistry_coupling, flag_for_aerosol_physics, flag_for_hedmf, flag_for_shoc, flag_for_scale_aware_TKE_moist_EDMF_PBL, 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_timestep, tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep, 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, kinematic_surface_upward_sensible_heat_flux, instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling, sea_area_fraction, sea_ice_concentration, surface_x_momentum_flux_for_coupling_interstitial, surface_y_momentum_flux_for_coupling_interstitial, surface_upward_sensible_heat_flux_for_coupling_interstitial, surface_upward_latent_heat_flux_for_coupling_interstitial, 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 mp_thompson_post.F90 with registry OrderedDict([('mp_thompson_post', {'mp_thompson_post': {'mp_thompson_post_init': [14, 40], 'mp_thompson_post_finalize': [101, 113], 'mp_thompson_post_run': [46, 95]}})]) -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, mpi_comm, mpi_rank, mpi_root -DEBUG: Parsing file mp_thompson.F90 with registry OrderedDict([('mp_thompson', {'mp_thompson': {'mp_thompson_run': [95, 282], 'mp_thompson_finalize': [289, 299], 'mp_thompson_init': [18, 86]}})]) -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_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 gwdps.f with registry OrderedDict([('gwdps', {'gwdps': {'gwdps_init': [8, 9], 'gwdps_run': [193, 1257], 'gwdps_finalize': [1262, 1263]}}), ('gwdps_post', {})]) -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 gwdps.f with registry OrderedDict([('gwdps', {'gwdps': {'gwdps_init': [8, 9], 'gwdps_run': [193, 1257], 'gwdps_finalize': [1262, 1263]}}), ('gwdps_post', {'gwdps_post': {'gwdps_post_init': [1271, 1272], 'gwdps_post_finalize': [1300, 1301], 'gwdps_post_run': [1276, 1297]}})]) -DEBUG: Skipping blank table gwdps_post_init -DEBUG: Skipping blank table gwdps_post_finalize -DEBUG: Module name: gwdps_post -DEBUG: Scheme name: gwdps_post -DEBUG: Variables in subroutine gwdps_post_init: -DEBUG: Variables in subroutine gwdps_post_finalize: -DEBUG: Variables in subroutine gwdps_post_run: tendency_of_y_wind_due_to_model_physics, tendency_of_x_wind_due_to_model_physics, tendency_of_air_temperature_due_to_model_physics, instantaneous_x_stress_due_to_gravity_wave_drag, instantaneous_y_stress_due_to_gravity_wave_drag, ccpp_error_message, ccpp_error_flag, 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_orographic_gravity_wave_drag, cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag, cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag -DEBUG: Parsing file cires_ugwp.F90 with registry OrderedDict([('cires_ugwp', {'cires_ugwp': {'cires_ugwp_run': [105, 265], 'cires_ugwp_finalize': [80, 91], 'cires_ugwp_init': [29, 70]}})]) -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, 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 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 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_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, kinematic_surface_upward_latent_heat_flux, 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_air_temperature_due_to_longwave_heating_on_radiation_time_step, 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_timestep, tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep, 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': [118, 830], '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, 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, 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 GFS_stochastics.F90 with registry OrderedDict([('GFS_stochastics', {'GFS_stochastics': {'GFS_stochastics_run': [22, 168], '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, 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, 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 drag_suite.F90 with registry OrderedDict([('drag_suite_pre', {'drag_suite_pre': {'drag_suite_pre_init': [9, 10], 'drag_suite_pre_finalize': [82, 83], 'drag_suite_pre_run': [17, 75]}}), ('drag_suite', {}), ('drag_suite_post', {})]) -DEBUG: Skipping blank table drag_suite_pre_init -DEBUG: Skipping blank table drag_suite_pre_finalize -DEBUG: Module name: drag_suite_pre -DEBUG: Scheme name: drag_suite_pre -DEBUG: Variables in subroutine drag_suite_pre_init: -DEBUG: Variables in subroutine drag_suite_pre_finalize: -DEBUG: Variables in subroutine drag_suite_pre_run: horizontal_loop_extent, number_of_statistical_measures_of_subgrid_orography, statistical_measures_of_subgrid_orography, 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, ccpp_error_message, ccpp_error_flag -DEBUG: Parsing file drag_suite.F90 with registry OrderedDict([('drag_suite_pre', {'drag_suite_pre': {'drag_suite_pre_init': [9, 10], 'drag_suite_pre_finalize': [82, 83], 'drag_suite_pre_run': [17, 75]}}), ('drag_suite', {'drag_suite': {'drag_suite_finalize': [1259, 1260], 'drag_suite_run': [268, 1254], 'drag_suite_init': [90, 91]}}), ('drag_suite_post', {})]) -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, 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, ccpp_error_message, ccpp_error_flag, 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, 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 -DEBUG: Variables in subroutine drag_suite_init: -DEBUG: Parsing file drag_suite.F90 with registry OrderedDict([('drag_suite_pre', {'drag_suite_pre': {'drag_suite_pre_init': [9, 10], 'drag_suite_pre_finalize': [82, 83], 'drag_suite_pre_run': [17, 75]}}), ('drag_suite', {'drag_suite': {'drag_suite_finalize': [1259, 1260], 'drag_suite_run': [268, 1254], 'drag_suite_init': [90, 91]}}), ('drag_suite_post', {'drag_suite_post': {'drag_suite_post_init': [1268, 1269], 'drag_suite_post_finalize': [1297, 1298], 'drag_suite_post_run': [1273, 1294]}})]) -DEBUG: Skipping blank table drag_suite_post_init -DEBUG: Skipping blank table drag_suite_post_finalize -DEBUG: Module name: drag_suite_post -DEBUG: Scheme name: drag_suite_post -DEBUG: Variables in subroutine drag_suite_post_init: -DEBUG: Variables in subroutine drag_suite_post_finalize: -DEBUG: Variables in subroutine drag_suite_post_run: ccpp_error_message, ccpp_error_flag, tendency_of_y_wind_due_to_model_physics, tendency_of_x_wind_due_to_model_physics, tendency_of_air_temperature_due_to_model_physics, 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_orographic_gravity_wave_drag, cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag, cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag -DEBUG: Parsing file sfc_cice.f with registry OrderedDict([('sfc_cice', {'sfc_cice': {'sfc_cice_finalize': [12, 13], 'sfc_cice_run': [31, 120], '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, flag_for_chemistry_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_interstitial, surface_upward_sensible_heat_flux_for_coupling_interstitial, surface_x_momentum_flux_for_coupling_interstitial, surface_y_momentum_flux_for_coupling_interstitial, 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 module_MYNNrad_post.F90 with registry OrderedDict([('mynnrad_post', {'mynnrad_post': {'mynnrad_post_finalize': [7, 8], 'mynnrad_post_run': [17, 44], '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, 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 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, 38], '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, soil_vertical_dimension_for_land_surface_model, soil_vertical_dimension, flag_nonzero_land_surface_fraction, 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, 38], 'lsm_ruc_sfc_sice_pre_init': [6, 7]}}), ('lsm_ruc_sfc_sice_post', {'lsm_ruc_sfc_sice_post': {'lsm_ruc_sfc_sice_post_finalize': [48, 49], 'lsm_ruc_sfc_sice_post_init': [46, 47], 'lsm_ruc_sfc_sice_post_run': [55, 78]}})]) -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, soil_vertical_dimension_for_land_surface_model, soil_vertical_dimension, flag_nonzero_land_surface_fraction, soil_temperature, soil_temperature_for_land_surface_model, ccpp_error_message, ccpp_error_flag -DEBUG: Parsing file GFS_DCNV_generic.F90 with registry OrderedDict([('GFS_DCNV_generic_pre', {'GFS_DCNV_generic_pre': {'GFS_DCNV_generic_pre_run': [14, 63], '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_cellular_automata, flag_for_combination_of_sppt_with_isppt_deep, 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, 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, 63], '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': [67, 68], 'GFS_DCNV_generic_post_run': [74, 161], 'GFS_DCNV_generic_post_finalize': [69, 70]}})]) -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, flag_for_cellular_automata, flag_for_combination_of_sppt_with_isppt_deep, 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, ice_water_mixing_ratio_convective_transport_tracer, cloud_condensed_water_mixing_ratio_convective_transport_tracer, 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, convective_available_potential_energy_for_coupling, tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep, tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep, tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep, tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep -DEBUG: Variables in subroutine GFS_DCNV_generic_post_finalize: -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 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 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, 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 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 dcyc2.f with registry OrderedDict([('dcyc2t3', {'dcyc2t3': {'dcyc2t3_init': [14, 15], 'dcyc2t3_run': [166, 298], 'dcyc2t3_finalize': [18, 19]}}), ('dcyc2t3_post', {})]) -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 dcyc2.f with registry OrderedDict([('dcyc2t3', {'dcyc2t3': {'dcyc2t3_init': [14, 15], 'dcyc2t3_run': [166, 298], 'dcyc2t3_finalize': [18, 19]}}), ('dcyc2t3_post', {'dcyc2t3_post': {'dcyc2t3_post_finalize': [313, 314], 'dcyc2t3_post_run': [321, 336], 'dcyc2t3_post_init': [309, 310]}})]) -DEBUG: Skipping blank table dcyc2t3_post_finalize -DEBUG: Skipping blank table dcyc2t3_post_init -DEBUG: Module name: dcyc2t3_post -DEBUG: Scheme name: dcyc2t3_post -DEBUG: Variables in subroutine dcyc2t3_post_finalize: -DEBUG: Variables in subroutine dcyc2t3_post_run: horizontal_loop_extent, surface_downwelling_shortwave_flux, surface_net_downwelling_shortwave_flux, ccpp_error_message, ccpp_error_flag, surface_upwelling_shortwave_flux -DEBUG: Variables in subroutine dcyc2t3_post_init: -DEBUG: Parsing file moninshoc.f with registry OrderedDict([('moninshoc', {'moninshoc': {'moninshoc_run': [21, 529], '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, kinematic_surface_upward_latent_heat_flux, 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, flag_print, horizontal_index_of_printed_column, mpi_rank, 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: -INFO: filtering out variable GFS_stateout_type_instance -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 cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -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 conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep -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 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 explicit_rainfall_rate_from_previous_timestep -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_aerosol_input_MG -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_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_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_shoc_after_convection -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 graupel_precipitation_rate_from_previous_timestep -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_precipitation_rate_from_previous_timestep -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 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 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 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_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_precipitation_rate_from_previous_timestep -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_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 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 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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 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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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 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_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_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_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_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_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_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_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_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_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_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_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 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 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_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_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_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 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 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_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_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_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_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_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_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_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 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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%del 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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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 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_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 angle_from_east_of_maximum_subgrid_orographic_variations in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_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_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 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_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 anisotropy_of_subgrid_orography in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_pre_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 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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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 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_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 asymmetry_of_subgrid_orography in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_pre_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 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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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 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_energy_content_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%te0 in module CCPP_typedefs -DEBUG: Requested variable atmosphere_energy_content_in_column in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%te0_2d in module CCPP_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_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 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_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_maximum in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_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 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_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 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_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 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 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_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_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 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_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_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_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_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_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_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 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 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_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_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_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_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_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 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 cappa_moist_gas_constant_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%cappa in module CCPP_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_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_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_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_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_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_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_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_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_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_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_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run 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_ozphys SCHEME_ozphys SUBROUTINE_ozphys_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_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_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_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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target cdata%errflg in module ccpp_types -DEBUG: Requested variable ccpp_error_flag in MODULE_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_run 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_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_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_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_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_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_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_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target cdata%errflg in module ccpp_types -DEBUG: Requested variable ccpp_error_flag in MODULE_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_post_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_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_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_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_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_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_post_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_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_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_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_cnvc90 SCHEME_cnvc90 SUBROUTINE_cnvc90_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target cdata%errflg in module ccpp_types -DEBUG: Requested variable ccpp_error_flag in MODULE_dcyc2t3_post SCHEME_dcyc2t3_post SUBROUTINE_dcyc2t3_post_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_post_run matched to target cdata%errmsg in module ccpp_types -DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_run matched to target cdata%errmsg in module ccpp_types -DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_run 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_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_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_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_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_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_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_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_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_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_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_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_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_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_post_run matched to target cdata%errmsg in module ccpp_types -DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_post_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_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_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_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_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_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_pre_run matched to target cdata%errmsg in module ccpp_types -DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_post_run matched to target cdata%errmsg in module ccpp_types -DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_post_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_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_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_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_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_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_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_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_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_dcyc2t3_post SCHEME_dcyc2t3_post SUBROUTINE_dcyc2t3_post_run matched to target cdata%errmsg in module ccpp_types -DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_dcyc2t3_post SCHEME_dcyc2t3_post SUBROUTINE_dcyc2t3_post_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_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_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 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 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_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_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_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_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_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_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_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_for_fast_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%area in module CCPP_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_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_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_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_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_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_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_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_convective_transport_tracer 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)%clw(:,:,2) 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_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_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_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_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_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_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_condensed_water_specific_humidity_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%q_con in module CCPP_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_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_fraction_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%qc in module CCPP_typedefs -DEBUG: Requested variable cloud_fraction_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%ntclamt) in module GFS_typedefs -DEBUG: Requested variable cloud_graupel_specific_humidity_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%qg in module CCPP_typedefs -DEBUG: Requested variable cloud_ice_specific_humidity_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%qi in module CCPP_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_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_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_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_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_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_specific_humidity_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%ql in module CCPP_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_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_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_specific_humidity_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%qr in module CCPP_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_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_snow_specific_humidity_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%qs in module CCPP_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_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_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_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_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_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_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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_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_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 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 convective_available_potential_energy_for_coupling 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)%Coupling%cape 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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_post_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_pre SCHEME_m_micro_pre SUBROUTINE_m_micro_pre_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_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_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_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_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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_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_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_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 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_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 convexity_of_subgrid_orography in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_pre_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 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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Control%cdec 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 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 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_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_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_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_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_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_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_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_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_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_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_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_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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_orographic_gravity_wave_drag in MODULE_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_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_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_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_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_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_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_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_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_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_x_wind_due_to_orographic_gravity_wave_drag in MODULE_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_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_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_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_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_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_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_change_in_y_wind_due_to_orographic_gravity_wave_drag in MODULE_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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 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_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 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 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_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 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_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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 effective_radius_of_stratiform_cloud_graupel_particle_in_um in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%ngeffr) in module GFS_typedefs -DEBUG: Requested variable effective_radius_of_stratiform_cloud_graupel_particle_in_um in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%ngeffr) in module GFS_typedefs -DEBUG: Requested variable effective_radius_of_stratiform_cloud_ice_particle_in_um in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nieffr) in module GFS_typedefs -DEBUG: Requested variable effective_radius_of_stratiform_cloud_ice_particle_in_um in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nieffr) in module GFS_typedefs -DEBUG: Requested variable effective_radius_of_stratiform_cloud_ice_particle_in_um in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nieffr) in module GFS_typedefs -DEBUG: Requested variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nleffr) in module GFS_typedefs -DEBUG: Requested variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nleffr) in module GFS_typedefs -DEBUG: Requested variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nleffr) in module GFS_typedefs -DEBUG: Requested variable effective_radius_of_stratiform_cloud_rain_particle_in_um in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nreffr) in module GFS_typedefs -DEBUG: Requested variable effective_radius_of_stratiform_cloud_rain_particle_in_um in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nreffr) in module GFS_typedefs -DEBUG: Requested variable effective_radius_of_stratiform_cloud_snow_particle_in_um in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nseffr) in module GFS_typedefs -DEBUG: Requested variable effective_radius_of_stratiform_cloud_snow_particle_in_um in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nseffr) in module GFS_typedefs -DEBUG: Requested variable effective_radius_of_stratiform_cloud_snow_particle_in_um in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nseffr) in module GFS_typedefs -DEBUG: Requested variable ending_x_direction_index in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%ie in module CCPP_typedefs -DEBUG: Requested variable ending_x_direction_index_domain in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%ied in module CCPP_typedefs -DEBUG: Requested variable ending_y_direction_index in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%je in module CCPP_typedefs -DEBUG: Requested variable ending_y_direction_index_domain in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%jed in module CCPP_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Control%slag 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 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 finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%pkz in module CCPP_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_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_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_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_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_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_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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_post_run matched to target GFS_Control%lssav 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_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_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_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_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_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_post_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_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_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_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_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_h2ophys SCHEME_h2ophys SUBROUTINE_h2ophys_run matched to target GFS_Control%ldiag3d in module GFS_typedefs -DEBUG: Requested variable flag_diagnostics_3D in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Control%ldiag3d 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_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_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_post_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_post_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_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_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_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_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_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_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_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_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_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_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_canopy_heat_storage in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Control%lheatstrg 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_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_cellular_automata in MODULE_GFS_DCNV_generic_pre SCHEME_GFS_DCNV_generic_pre SUBROUTINE_GFS_DCNV_generic_pre_run matched to target GFS_Control%do_ca in module GFS_typedefs -DEBUG: Requested variable flag_for_cellular_automata in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Control%do_ca 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_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_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Control%cplchm 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_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_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_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_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_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_effective_radii in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Control%effr_in in module GFS_typedefs -DEBUG: Requested variable flag_for_combination_of_sppt_with_isppt_deep in MODULE_GFS_DCNV_generic_pre SCHEME_GFS_DCNV_generic_pre SUBROUTINE_GFS_DCNV_generic_pre_run matched to target GFS_Control%isppt_deep in module GFS_typedefs -DEBUG: Requested variable flag_for_combination_of_sppt_with_isppt_deep in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Control%isppt_deep 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_fast_microphysics_energy_conservation in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%fast_mp_consv in module CCPP_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_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_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_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_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_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_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_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_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_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_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_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_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_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_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Control%frac_grid 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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_run matched to target GFS_Control%imp_physics_gfdl in module GFS_typedefs -DEBUG: Requested variable flag_for_gfdl_microphysics_scheme in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_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_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_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_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_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_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_hydrostatic_heating_from_physics in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Interstitial(cdata%thrd_no)%phys_hydrostatic in module GFS_typedefs -DEBUG: Requested variable flag_for_hydrostatic_solver in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Control%hydrostatic in module GFS_typedefs -DEBUG: Requested variable flag_for_hydrostatic_solver_for_fast_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%hydrostatic in module CCPP_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_inline_cloud_fraction_calculation in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%do_qa in module CCPP_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_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_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_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_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_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_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_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_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_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_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_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_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_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_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_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_run 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_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_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_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_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_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_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_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_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 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_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_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_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_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_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_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_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_saturation_adjustment_for_microphysics_in_dynamics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_init matched to target CCPP_interstitial%do_sat_adj in module CCPP_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_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_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_run 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_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_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_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_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_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_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_tendency_of_air_temperature_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%out_dt in module CCPP_typedefs -DEBUG: Requested variable flag_for_the_last_step_of_k_split_remapping in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%last_step in module CCPP_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_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_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_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_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_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_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_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_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_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_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_for_zhao_carr_pdf_microphysics_scheme in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_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_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_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_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_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_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_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_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_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_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_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_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_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_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_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_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_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_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_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_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%icy 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_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_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_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_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_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_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_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_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%wet 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_gwdc SCHEME_gwdc SUBROUTINE_gwdc_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_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_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_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_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Control%lprnt in module GFS_typedefs -DEBUG: Requested variable flag_print in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_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_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_post_run matched to target GFS_Control%shcnvcw 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_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_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 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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_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 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_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_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_grid_box_with_subgrid_orography_higher_than_critical_height in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_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_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 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_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 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 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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_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_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_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_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_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_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_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_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_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_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_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_gwdps SCHEME_gwdps SUBROUTINE_gwdps_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run 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_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_constants_for_multi_gases_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_init matched to target CCPP_interstitial%rilist in module CCPP_typedefs -DEBUG: Requested variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%qvi in module CCPP_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Data(cdata%blk_no)%Statein%phil 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_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_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_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_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_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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%ntgl) in module GFS_typedefs -DEBUG: Requested variable graupel_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%ntgl) in module GFS_typedefs -DEBUG: Requested variable graupel_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%ntgl) in module GFS_typedefs -DEBUG: Requested variable graupel_mixing_ratio_updated_by_physics in MODULE_m_micro_post SCHEME_m_micro_post SUBROUTINE_m_micro_post_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntgl) in module GFS_typedefs -DEBUG: Requested variable graupel_mixing_ratio_updated_by_physics in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntgl) in module GFS_typedefs -DEBUG: Requested variable graupel_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%ntgl) 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_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_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_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_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_ozphys SCHEME_ozphys SUBROUTINE_ozphys_run 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_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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_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_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_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_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_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_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_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_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_gwdps SCHEME_gwdps SUBROUTINE_gwdps_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_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_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 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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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 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_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 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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Control%blksz2(cdata%blk_no) 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_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_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_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_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_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_m_micro SCHEME_m_micro SUBROUTINE_m_micro_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_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_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_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_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_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 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_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_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_dcyc2t3_post SCHEME_dcyc2t3_post SUBROUTINE_dcyc2t3_post_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 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_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_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_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_convective_transport_tracer 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)%clw(:,:,1) 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_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_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 ice_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%ntiw) in module GFS_typedefs -DEBUG: Requested variable ice_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%ntiw) in module GFS_typedefs -DEBUG: Requested variable ice_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%ntiw) in module GFS_typedefs -DEBUG: Requested variable ice_water_mixing_ratio_updated_by_physics in MODULE_m_micro_post SCHEME_m_micro_post SUBROUTINE_m_micro_post_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntiw) in module GFS_typedefs -DEBUG: Requested variable ice_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%ntiw) in module GFS_typedefs -DEBUG: Requested variable ice_water_mixing_ratio_updated_by_physics in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntiw) in module GFS_typedefs -DEBUG: Requested variable ice_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%ntiw) 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_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_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_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_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_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 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_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_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_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_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_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_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_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_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_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_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Control%ntcw 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_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_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_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 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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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 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_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_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_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_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_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_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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_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_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_post_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_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_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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_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_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_post_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 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 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_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_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_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 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_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_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_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 julian_day in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Control%julian in module GFS_typedefs -DEBUG: Requested variable kappa_dry_for_fast_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%akap in module CCPP_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_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_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_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_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_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_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_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_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_shoc SCHEME_shoc SUBROUTINE_shoc_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 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_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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_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_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_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_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_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_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_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_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_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_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_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_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_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_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_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_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_shoc SCHEME_shoc SUBROUTINE_shoc_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 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_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_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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_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_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_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_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_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_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_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_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 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_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_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 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 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 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_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 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_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_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 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_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_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_run 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_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_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_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_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_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target con_hvap 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_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_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_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_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_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_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_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 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 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_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 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_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 log_pressure_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%peln in module CCPP_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%raincprv 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)%Tbd%raincprv in module GFS_typedefs -DEBUG: Requested variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep in MODULE_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_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_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_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_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_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_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_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_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_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_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_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_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_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_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%rainncprv 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)%Tbd%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_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%graupelprv 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)%Tbd%graupelprv in module GFS_typedefs -DEBUG: Requested variable lwe_thickness_of_graupel_amount_on_dynamics_timestep in MODULE_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_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_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_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_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%iceprv 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)%Tbd%iceprv in module GFS_typedefs -DEBUG: Requested variable lwe_thickness_of_ice_amount_on_dynamics_timestep in MODULE_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_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_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_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_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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_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_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%snowprv 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)%Tbd%snowprv in module GFS_typedefs -DEBUG: Requested variable lwe_thickness_of_snow_amount_on_dynamics_timestep in MODULE_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_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 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 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_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 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 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_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_pre SCHEME_m_micro_pre SUBROUTINE_m_micro_pre_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_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_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_pre SCHEME_m_micro_pre SUBROUTINE_m_micro_pre_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 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_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_subgrid_orography in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_pre_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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 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_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_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 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 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_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_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_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 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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Control%pgcon_shal 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_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_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_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_init 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_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_h2ophys SCHEME_h2ophys SUBROUTINE_h2ophys_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_gwdps SCHEME_gwdps SUBROUTINE_gwdps_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Control%me in module GFS_typedefs -DEBUG: Requested variable mpi_rank_for_fast_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_init matched to target CCPP_interstitial%mpirank in module CCPP_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_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_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_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_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_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_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_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 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_for_fast_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_init matched to target CCPP_interstitial%mpiroot in module CCPP_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_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 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 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 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_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_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_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_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_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 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 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_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_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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%itc 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_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_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_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_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_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_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_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_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_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_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_gases_for_multi_gases_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%ngas in module CCPP_typedefs -DEBUG: Requested variable number_of_gases_for_multi_gases_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_init matched to target CCPP_interstitial%ngas in module CCPP_typedefs -DEBUG: Requested variable number_of_ghost_zones in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%ng in module CCPP_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_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_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_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_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_statistical_measures_of_subgrid_orography in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_pre_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_total_tracers in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_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_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 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_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_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_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_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_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_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_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_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_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_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_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_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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_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_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_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_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_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_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_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_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_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_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_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_water_species in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_init matched to target CCPP_interstitial%nwat in module CCPP_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_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_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_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_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_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_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_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 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 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_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_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 omp_threads_for_fast_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%nthreads in module CCPP_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_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_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_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_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_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_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_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_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_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_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_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_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 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 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_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 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 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 pressure_thickness_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%delp in module CCPP_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_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 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 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_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_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_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Control%evfactl_deep in module GFS_typedefs -DEBUG: Requested variable rain_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%ntrw) in module GFS_typedefs -DEBUG: Requested variable rain_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%ntrw) in module GFS_typedefs -DEBUG: Requested variable rain_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%ntrw) in module GFS_typedefs -DEBUG: Requested variable rain_water_mixing_ratio_updated_by_physics in MODULE_m_micro_post SCHEME_m_micro_post SUBROUTINE_m_micro_post_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntrw) in module GFS_typedefs -DEBUG: Requested variable rain_water_mixing_ratio_updated_by_physics in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntrw) in module GFS_typedefs -DEBUG: Requested variable rain_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%ntrw) 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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_default_kind in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%zvir in module CCPP_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 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_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_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_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_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_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_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_concentration 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%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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_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 slope_of_subgrid_orography in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_pre_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 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_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_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_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_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_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_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_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%ntsw) in module GFS_typedefs -DEBUG: Requested variable snow_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%ntsw) in module GFS_typedefs -DEBUG: Requested variable snow_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%ntsw) in module GFS_typedefs -DEBUG: Requested variable snow_water_mixing_ratio_updated_by_physics in MODULE_m_micro_post SCHEME_m_micro_post SUBROUTINE_m_micro_post_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntsw) in module GFS_typedefs -DEBUG: Requested variable snow_water_mixing_ratio_updated_by_physics in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntsw) in module GFS_typedefs -DEBUG: Requested variable snow_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%ntsw) 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_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_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_temperature in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%stc 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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_vertical_dimension in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Control%lsoil 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_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_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_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 specific_heat_capacities_for_multi_gases_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_init matched to target CCPP_interstitial%cpilist in module CCPP_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target con_cp 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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target con_cliq 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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run 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_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_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_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_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_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_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 standard_deviation_of_subgrid_orography in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_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_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 starting_x_direction_index in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%is in module CCPP_typedefs -DEBUG: Requested variable starting_x_direction_index_domain in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%isd in module CCPP_typedefs -DEBUG: Requested variable starting_y_direction_index in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%js in module CCPP_typedefs -DEBUG: Requested variable starting_y_direction_index_domain in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%jsd in module CCPP_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 statistical_measures_of_subgrid_orography in MODULE_drag_suite_pre SCHEME_drag_suite_pre SUBROUTINE_drag_suite_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_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 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_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 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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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 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_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_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 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_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_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 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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_dcyc2t3_post SCHEME_dcyc2t3_post SUBROUTINE_dcyc2t3_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_geopotential_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%phis in module CCPP_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_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_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_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_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_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_dcyc2t3_post SCHEME_dcyc2t3_post SUBROUTINE_dcyc2t3_post_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_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 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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_upward_latent_heat_flux_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%dqsfcin_cpl in module GFS_typedefs -DEBUG: Requested variable surface_upward_latent_heat_flux_for_coupling_interstitial 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)%dqsfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_upward_latent_heat_flux_for_coupling_interstitial 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)%dqsfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_upward_latent_heat_flux_for_coupling_interstitial in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Interstitial(cdata%thrd_no)%dqsfc_cice 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_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_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_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_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_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_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_sensible_heat_flux_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%dtsfcin_cpl in module GFS_typedefs -DEBUG: Requested variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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)%dtsfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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)%dtsfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_upward_sensible_heat_flux_for_coupling_interstitial in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Interstitial(cdata%thrd_no)%dtsfc_cice 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 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_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_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 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_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_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 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_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_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 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_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_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%ulwsfcin_cpl in module GFS_typedefs -DEBUG: Requested variable surface_upwelling_longwave_flux_for_coupling_interstitial 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)%ulwsfc_cice 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_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_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_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_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_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_shortwave_flux in MODULE_dcyc2t3_post SCHEME_dcyc2t3_post SUBROUTINE_dcyc2t3_post_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_x_momentum_flux_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%dusfcin_cpl in module GFS_typedefs -DEBUG: Requested variable surface_x_momentum_flux_for_coupling_interstitial 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)%dusfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_x_momentum_flux_for_coupling_interstitial 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)%dusfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_x_momentum_flux_for_coupling_interstitial in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Interstitial(cdata%thrd_no)%dusfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_y_momentum_flux_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%dvsfcin_cpl in module GFS_typedefs -DEBUG: Requested variable surface_y_momentum_flux_for_coupling_interstitial 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)%dvsfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_y_momentum_flux_for_coupling_interstitial 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)%dvsfc_cice in module GFS_typedefs -DEBUG: Requested variable surface_y_momentum_flux_for_coupling_interstitial in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Interstitial(cdata%thrd_no)%dvsfc_cice 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_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_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_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_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_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 tendency_of_air_temperature_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%dtdt in module CCPP_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_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)%Coupling%tconvtend in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Data(cdata%blk_no)%Tbd%htlw0 in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step in MODULE_rrtmg_lw_post SCHEME_rrtmg_lw_post SUBROUTINE_rrtmg_lw_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%htlw0 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)%Tbd%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)%Tbd%htlwc 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)%Tbd%htlwc in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Data(cdata%blk_no)%Tbd%htlwc in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step in MODULE_rrtmg_lw_post SCHEME_rrtmg_lw_post SUBROUTINE_rrtmg_lw_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%htlwc 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)%Tbd%htlwc 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)%Tbd%htlwc 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)%Tbd%htlwc in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_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)%Radtend%htrlw in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep 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_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)%Radtend%htrlw in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep 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_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_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_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_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_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_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_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_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_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_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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_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_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_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_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_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_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_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_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_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Data(cdata%blk_no)%Tbd%htsw0 in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step in MODULE_rrtmg_sw_post SCHEME_rrtmg_sw_post SUBROUTINE_rrtmg_sw_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%htsw0 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)%Tbd%htsw0 in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Data(cdata%blk_no)%Tbd%htswc 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)%Tbd%htswc in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step in MODULE_rrtmg_sw_post SCHEME_rrtmg_sw_post SUBROUTINE_rrtmg_sw_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%htswc 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)%Tbd%htswc 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)%Tbd%htswc 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)%Tbd%htswc in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_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)%Radtend%htrsw in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep 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_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)%Radtend%htrsw in module GFS_typedefs -DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep 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_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_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_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_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_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_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_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_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_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_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_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_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdftra in module GFS_typedefs -DEBUG: Requested variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_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)%Coupling%qconvtend in module GFS_typedefs -DEBUG: Requested variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_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)%Coupling%uconvtend 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_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_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_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_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_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_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_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_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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 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_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_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_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_deep_convection_for_coupling_on_physics_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)%Coupling%vconvtend 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_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_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_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_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_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_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_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_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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 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_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_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_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 thickness_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%delz in module CCPP_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_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_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 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_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_x_stress_due_to_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%dugwd in module GFS_typedefs -DEBUG: Requested variable time_integral_of_x_stress_due_to_gravity_wave_drag in MODULE_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_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_integral_of_y_stress_due_to_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%dvgwd in module GFS_typedefs -DEBUG: Requested variable time_integral_of_y_stress_due_to_gravity_wave_drag in MODULE_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_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_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_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_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_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_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_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_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_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_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_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_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_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_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_gwdps_post SCHEME_gwdps_post SUBROUTINE_gwdps_post_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_drag_suite_post SCHEME_drag_suite_post SUBROUTINE_drag_suite_post_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_sfc_noahmp_pre SCHEME_sfc_noahmp_pre SUBROUTINE_sfc_noahmp_pre_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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_remapping_for_fast_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%mdt in module CCPP_typedefs -DEBUG: Requested variable top_layer_index_for_fast_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%kmp in module CCPP_typedefs -DEBUG: Requested variable top_layer_index_for_fast_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_init matched to target CCPP_interstitial%kmp in module CCPP_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_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_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_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_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_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 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 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_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_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_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 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_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_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_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 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_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 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_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 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_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 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_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 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 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_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 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 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_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_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_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_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_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_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_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 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 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_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_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_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 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_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_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_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_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_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_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 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_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_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 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_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_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_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_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_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_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_ozphys SCHEME_ozphys SUBROUTINE_ozphys_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_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_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_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Control%levs in module GFS_typedefs -DEBUG: Requested variable vertical_dimension in MODULE_samfshalcnv_post SCHEME_samfshalcnv_post SUBROUTINE_samfshalcnv_post_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_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_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_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_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_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_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_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_gwdps SCHEME_gwdps SUBROUTINE_gwdps_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_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_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_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_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_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 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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_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_for_fast_physics in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%npz in module CCPP_typedefs -DEBUG: Requested variable vertical_dimension_for_thickness_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%npzdelz in module CCPP_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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_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_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_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_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_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_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_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 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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%vdftra in module GFS_typedefs -DEBUG: Requested variable virtual_temperature_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%pt in module CCPP_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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 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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_at_Lagrangian_surface in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target CCPP_interstitial%qv in module CCPP_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_shoc SCHEME_shoc SUBROUTINE_shoc_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_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_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_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_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_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_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_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_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_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_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_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_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_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_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_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_hedmf SCHEME_hedmf SUBROUTINE_hedmf_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_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_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%xmu in module GFS_typedefs -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 162 schemes to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.mk, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -DEBUG: Generating suite and group caps for suite FV3_GFS_2017... -DEBUG: Generating suite and group caps for suite FV3_GFS_2017_stretched... -INFO: Generating static API ccpp_static_api.F90 in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 11 auto-generated caps to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.mk and /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ ./build_ccpp.sh hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk 'CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/lib from /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -DNETCDF_DIR=/apps/netcdf/4.7.0/intel/18.0.5.274 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DOPENMP=ON -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 18.0.0.20180823 --- The CXX compiler identification is Intel 18.0.0.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 --- 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 --- The Fortran compiler identification is Intel --- 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 LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") --- 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 SCHEMES from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_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: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 5 -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 3 -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 7 -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 6 -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 4 -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -ftrapuv -traceback -qopenmp -qopenmp -O0 -g -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -ftrapuv -traceback -qopenmp -qopenmp -O0 -g -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields_idx.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -ftrapuv -traceback -qopenmp -qopenmp -O0 -g -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_utils.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 2 -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -ftrapuv -traceback -qopenmp -qopenmp -O0 -g -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.c -Linking Fortran static library libccpp.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar cr libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -Linking Fortran executable test_check -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC CMakeFiles/test_check.dir/test_check.f90.o -o test_check -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O0 -g -fPIC -ftrapuv -traceback -qopenmp -qopenmp -O0 -g -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/test_fields.dir/test_fields.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_fields.c -Linking C executable test_fields -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -O0 -g -fPIC -ftrapuv -traceback -qopenmp -qopenmp -O0 -g -fPIC CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -Linking Fortran executable test_init_finalize -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 17 -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 9 -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 12 -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 37 -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 41 -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 42 -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 49 -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 23 -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 22 -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 25 -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 28 -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 20 -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 33 -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 45 -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 21 -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 92 -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 39 -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 40 -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 38 -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 66 -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 15 -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 16 -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 36 -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 27 -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 44 -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 24 -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 11 -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 19 -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 26 -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 47 -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 48 -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 82 -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 89 -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 91 -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 51 -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 76 -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 72 -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 90 -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 59 -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 58 -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 62 -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 63 -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 70 -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 55 -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 94 -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 77 -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 57 -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 81 -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 56 -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 78 -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 54 -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 93 -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 50 -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 32 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 97 -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 96 -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 95 -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stretched_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stretched_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 68 -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 60 -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 79 -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 53 -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 71 -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 65 -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 86 -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 69 -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 88 -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 75 -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 74 -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 64 -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 84 -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 83 -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 87 -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 67 -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 80 -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 73 -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 61 -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 85 -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 52 -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 43 -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 10 -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 13 -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 14 -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 18 -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 29 -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 30 -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 31 -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 32 -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 34 -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 35 -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -fpp: warning: keyword redefined: STATIC -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 46 -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -Linking Fortran static library libccppphys.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccppphys.dir/link.txt --verbose=1 -/usr/bin/ar cr 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_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/mfscu.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/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.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 CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o -/usr/bin/ranlib libccppphys.a -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[2]: Nothing to be done for `preinstall'. -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Debug" --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccpp.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config-debug.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_utils.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_errors.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_strings.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_suite.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_types.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_api.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccppphys.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config-debug.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_stochastics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_fast_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_stretched_stochastics_cap.mod -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL on hera -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/configure.fv3 -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/modules.fv3 -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 COMP_BINDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake -C cpl FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_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 -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -Duse_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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -Duse_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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DDEBUG -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpiifort -Duse_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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -makefile:67: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DOVERLOAD_R4 CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -makefile:54: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -gmake -C io FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.0_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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_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_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake esmf_make_fragment FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Installation into "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC" -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; \ -gmake nems DEBUG=Y \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL CCPP_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp FV3_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" ; \ -test -x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" -CPPFLAGS += ESMF_VERSION_REVISION="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_MAJOR="8" -CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dom.Heinzeller) Tue Oct 29 17:15:57 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 17:15:57 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 17:15:57 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 17:15:57 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 17:15:57 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 17:15:57 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 17:15:57 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 17:15:57 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 17:15:57 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 17:15:57 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -mpiifort -o /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cap.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libccppdriver.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3core.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3io.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libipd.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libgfsphys.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cpl.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libstochastic_physics.a -L/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/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' -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_19.exe" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_19.exe -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_19 BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y' NEMS_BUILDOPT=DEBUG=Y clean -Will copy modules.nems and NEMS.x as fv3_19 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -+ elapsed=325 -+ echo 'Elapsed time 325 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y finished' -Elapsed time 325 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ readonly BUILD_TARGET=hera.intel -+ BUILD_TARGET=hera.intel -+ readonly MAKE_OPT= -+ MAKE_OPT= -+ readonly BUILD_NAME=fv3_1 -+ BUILD_NAME=fv3_1 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -hfe06 -+ echo 'Compiling into fv3_1.exe on hera.intel' -Compiling into fv3_1.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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ '' == *\C\C\P\P\=\Y* ]] -+ [[ '' == *\W\W\3\=\Y* ]] -+ [[ '' == *\D\E\B\U\G\=\Y* ]] -+ [[ '' == *\D\E\B\U\G\=\Y* ]] -+ [[ '' == *\R\E\P\R\O\=\Y* ]] -+ NEMS_BUILDOPT= -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_1 BUILD_ENV=hera.intel FV3_MAKEOPT= NEMS_BUILDOPT= distclean -Will copy modules.nems and NEMS.x as fv3_1 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -cc -E four_to_grid_stochy.F > four_to_grid_stochy.f -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:16: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk: No such file or directory -Components in linker order: FV3 FMS -FV3: include -GNUmakefile:70: : component FV3 makefile fragment is missing -FMS: include -GNUmakefile:70: : component FMS makefile fragment is missing -gmake[1]: *** No rule to make target `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk'. -gmake[1]: Failed to remake makefile `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk'. -rm -f -f *.tmp.f90 *.lst *.o *.mod lm map -cd ENS_Cpl ; gmake clean -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test_results.mk -+ gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_1 BUILD_ENV=hera.intel FV3_MAKEOPT= NEMS_BUILDOPT= build -Will copy modules.nems and NEMS.x as fv3_1 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/modulefiles/hera.intel/fv3 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_1" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_1 -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/conf/configure.fv3.hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh" -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/configure_rules.mk:3: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=12000000 ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ; \ -) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ -exec gmake all - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -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/apps/netcdf/4.7.0/intel/18.0.5.274/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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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/apps/netcdf/4.7.0/intel/18.0.5.274/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 -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -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 -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -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 -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -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 -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -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 -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mpp/affinity.c -o ../mpp/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/apps/netcdf/4.7.0/intel/18.0.5.274/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 -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/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 -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_utilities.F90 -o ../mpp/mpp_utilities.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/test_mpp_pset.F90 -o ../mpp/test_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_domains.F90 -o ../mpp/mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_comm.F90 -o ../drifters/drifters_comm.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../fms/fms_io.F90 -o ../fms/fms_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/test_mpp.F90 -o ../mpp/test_mpp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../fms/test_fms_io.F90 -o ../fms/test_fms_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_output.F90 -o ../diag_manager/diag_output.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../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 -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/test_horiz_interp.F90 -o ../horiz_interp/test_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/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 -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_util.F90 -o ../diag_manager/diag_util.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_manager.F90 -o ../diag_manager/diag_manager.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../data_override/data_override.F90 -o ../data_override/data_override.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL" -mv fms.mk "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -Compiling into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL on hera -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/configure.fv3 -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/modules.fv3 -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 COMP_BINDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL nemsinstall - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake -C cpl FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -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/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -a - physics/co2hc.o -a - physics/date_def.o -a - physics/dcyc2.o -a - physics/dcyc2.pre.rad.o -a - physics/efield.o -a - physics/get_prs.o -a - physics/gocart_tracer_config_stub.o -a - physics/gscond.o -a - physics/gscondp.o -a - physics/gwdc.o -a - physics/gwdps.o -a - physics/ugwp_driver_v0.o -a - physics/cires_orowam2017.o -a - physics/h2o_def.o -a - physics/h2oc.o -a - physics/h2ohdc.o -a - physics/h2ophys.o -a - physics/ideaca.o -a - physics/idea_co2.o -a - physics/idea_composition.o -a - physics/idea_dissipation.o -a - physics/idea_h2o.o -a - physics/idea_ion.o -a - physics/idea_o2_o3.o -a - physics/idea_phys.o -a - physics/idea_solar_heating.o -a - physics/idea_tracer.o -a - physics/iounitdef.o -a - physics/lrgsclr.o -a - physics/mersenne_twister.o -a - physics/mfpbl.o -a - physics/mfpblt.o -a - physics/mfpbltq.o -a - physics/mfscu.o -a - physics/mfscuq.o -a - physics/module_bfmicrophysics.o -a - physics/moninedmf.o -a - physics/moninedmf_hafs.o -a - physics/moninp.o -a - physics/moninp1.o -a - physics/moninq.o -a - physics/moninq1.o -a - physics/moninshoc.o -a - physics/mstadb.o -a - physics/mstadbtn.o -a - physics/mstadbtn2.o -a - physics/mstcnv.o -a - physics/namelist_soilveg.o -a - physics/ozne_def.o -a - physics/iccn_def.o -a - physics/aerclm_def.o -a - physics/ozphys.o -a - physics/ozphys_2015.o -a - physics/physparam.o -a - physics/precpd.o -a - physics/precpd_shoc.o -a - physics/precpdp.o -a - physics/progt2.o -a - physics/progtm_module.o -a - physics/rad_initialize.o -a - physics/radiation_aerosols.o -a - physics/radiation_astronomy.o -a - physics/radiation_clouds.o -a - physics/radiation_gases.o -a - physics/radiation_surface.o -a - physics/radlw_datatb.o -a - physics/radlw_main.o -a - physics/radlw_param.o -a - physics/radsw_datatb.o -a - physics/radsw_main.o -a - physics/radsw_param.o -a - physics/rascnvv2.o -a - physics/rayleigh_damp.o -a - physics/rayleigh_damp_mesopause.o -a - physics/samfaerosols.o -a - physics/samfdeepcnv.o -a - physics/samfshalcnv.o -a - physics/sascnv.o -a - physics/sascnvn.o -a - physics/satmedmfvdif.o -a - physics/satmedmfvdifq.o -a - physics/set_soilveg.o -a - physics/sfc_cice.o -a - physics/sfc_diag.o -a - physics/sfc_diff.o -a - physics/sfc_drv.o -a - physics/sfc_noahmp_drv.o -a - physics/sfc_nst.o -a - physics/sfc_ocean.o -a - physics/sfc_sice.o -a - physics/sflx.o -a - physics/shalcnv.o -a - physics/shalcv.o -a - physics/shalcv_1lyr.o -a - physics/shalcv_fixdp.o -a - physics/shalcv_opr.o -a - physics/tracer_const_h.o -a - physics/tridi2t3.o -a - physics/calpreciptype.o -a - physics/funcphys.o -a - physics/gcm_shoc.o -a - physics/get_prs_fv3.o -a - physics/h2ointerp.o -a - physics/module_nst_model.o -a - physics/module_nst_parameters.o -a - physics/module_nst_water_prop.o -a - physics/ozinterp.o -a - physics/module_wrf_utl.o -a - physics/noahmp_tables.o -a - physics/module_sf_noahmplsm.o -a - physics/module_sf_noahmp_glacier.o -a - physics/iccninterp.o -a - physics/aerinterp.o -a - physics/wam_f107_kp_mod.o -a - physics/aer_cloud.o -a - physics/cldmacro.o -a - physics/cldwat2m_micro.o -a - physics/gfs_phy_tracer_config.o -a - physics/machine.o -a - physics/num_parthds.o -a - physics/sfcsub.o -a - physics/wv_saturation.o -a - physics/GFDL_parse_tracers.o -a - physics/gcycle.o -a - physics/cires_ugwp_initialize.o -a - physics/cires_ugwp_module.o -a - physics/cires_ugwp_utils.o -a - physics/cires_ugwp_triggers.o -a - physics/cires_ugwp_solvers.o -a - physics/cires_vert_lsatdis.o -a - physics/cires_vert_orodis.o -a - physics/cires_vert_wmsdis.o -a - physics/gfdl_cloud_microphys.o -a - physics/micro_mg_utils.o -a - physics/micro_mg2_0.o -a - physics/micro_mg3_0.o -a - physics/m_micro_driver.o -a - physics/cs_conv.o -a - physics/GFS_debug.o -a - physics/module_mp_radar.o -a - physics/module_mp_thompson_gfs.o -a - physics/module_mp_wsm6_fv3.o -a - physics/physcons.o -a - physics/surface_perturbation.o -a - GFS_layer/GFS_abstraction_layer.o -a - GFS_layer/GFS_diagnostics.o -a - GFS_layer/GFS_driver.o -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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -gmake -C ipd FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -makefile:54: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -gmake -C io FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.0_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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_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_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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_cmp.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_cmp.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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake esmf_make_fragment FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Installation into "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC" -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; \ -gmake nems \ - COMPONENTS="FMS FV3" \ - FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL FV3_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" ; \ -test -x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -Components in linker order: FV3 FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" -CPPFLAGS += ESMF_VERSION_REVISION="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_MAJOR="8" -CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dom.Heinzeller) Tue Oct 29 03:56:13 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 03:56:13 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 03:56:13 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 03:56:13 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 03:56:13 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 03:56:13 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 03:56:13 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 03:56:13 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 03:56:13 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 03:56:13 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -mpiifort -o /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cap.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3core.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3io.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libipd.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libgfsphys.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cpl.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libstochastic_physics.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/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' -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_1.exe" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_1.exe -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_1 BUILD_ENV=hera.intel FV3_MAKEOPT= NEMS_BUILDOPT= clean -Will copy modules.nems and NEMS.x as fv3_1 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -+ elapsed=609 -+ echo 'Elapsed time 609 seconds. Compiling finished' -Elapsed time 609 seconds. Compiling finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ readonly BUILD_TARGET=hera.intel -+ BUILD_TARGET=hera.intel -+ readonly 'MAKE_OPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' -+ readonly BUILD_NAME=fv3_20 -+ BUILD_NAME=fv3_20 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -hfe06 -+ 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 -+ 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\W\W\3\=\Y* ]] -+ [[ 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 == *\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* ]] -+ NEMS_BUILDOPT= -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_20 BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' NEMS_BUILDOPT= distclean -Will copy modules.nems and NEMS.x as fv3_20 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include" ; \ -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp --clean -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: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test_results.mk -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_20 BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' NEMS_BUILDOPT= build -Will copy modules.nems and NEMS.x as fv3_20 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/modulefiles/hera.intel/fv3 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_20" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_20 -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/conf/configure.fv3.hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh" -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/configure_rules.mk:3: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=12000000 ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ; \ -) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ -exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" all - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL" -mv fms.mk "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh hera.intel "$PATH_CCPP" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk \ - "CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"" NO NO ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/include ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -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 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 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 slc of variable volume_fraction_of_unfrozen_soil_moisture 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 phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top 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 sec of variable seconds_elapsed_since_model_initialization 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 kbot of variable vertical_index_at_cloud_base 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 stc of variable soil_temperature 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 xlaixy of variable leaf_area_index 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 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 phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back 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 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 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 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 v10m of variable y_wind_at_10m 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 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 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 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 nmtvr of variable number_of_statistical_measures_of_subgrid_orography 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 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 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 ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial 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 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 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 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 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 levs of variable vertical_dimension 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 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 w_0 of variable coefficient_w_0 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 pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter 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 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 phy_myj_chkqlm of variable surface_layer_evaporation_switch 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 sdec of variable sine_of_solar_declination_angle 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 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 dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep 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 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 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 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 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 sinlat of variable sine_of_latitude 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 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 do_sfcperts of variable flag_for_stochastic_surface_perturbations 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 tsfc_ice of variable surface_skin_temperature_over_ice_interstitial 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 debug of variable flag_debug 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 u1 of variable x_wind_at_lowest_model_layer_for_diag 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 do_myjsfc of variable do_myjsfc 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 gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics 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 slopetype of variable surface_slope_classification 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 levh2o of variable vertical_dimension_of_h2o_forcing_data 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 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 save_q of variable tracer_concentration_save 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 cf_upi of variable convective_cloud_fraction_for_microphysics 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial 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 dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL 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 tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave 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 forcet of variable temperature_tendency_due_to_dynamics 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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 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 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 ntchmdiag of variable number_of_chemical_tracers_for_diagnostics 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 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 dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column 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 islmsk_cice of variable sea_land_ice_mask_cice 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 pgr of variable surface_air_pressure 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 nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling 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 nscav of variable number_of_tracers_scavenged 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 zorl_ice of variable surface_roughness_length_over_ice_interstitial 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 aero_in of variable flag_for_aerosol_input_MG 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 avg_max_length of variable time_interval_for_maximum_hourly_fields 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 kind_LOGICAL of variable kind_LOGICAL 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial 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 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 mdt of variable time_step_for_remapping_for_fast_physics 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 sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model 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 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 runoff of variable total_runoff 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 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 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 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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial 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 nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation 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 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 qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio 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 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 oceanfrac of variable sea_area_fraction 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 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 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 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 ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land 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 phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back 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 con_t0c of variable temperature_at_zero_celsius 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 dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling 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 shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term 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 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 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 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 mom4ice of variable flag_for_mom4_coupling 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 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 tsfcl of variable surface_skin_temperature_over_land 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ozphys -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 ozphys_2015 -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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme noahmpdrv -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 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 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_noahmp_pre -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 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 mp_thompson_post -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 gwdps_post -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 lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme mynnrad_post -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 lsm_noah -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme dcyc2t3_post -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -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 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_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_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_water_to_rain -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 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 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_aerosol_input_MG -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_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_shoc_after_convection -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 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 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 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 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_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_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 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 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 162 schemes to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.mk, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 12 auto-generated caps to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.mk and /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ ./build_ccpp.sh hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk 'CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/lib from /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -DNETCDF_DIR=/apps/netcdf/4.7.0/intel/18.0.5.274 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DOPENMP=ON -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 18.0.0.20180823 --- The CXX compiler identification is Intel 18.0.0.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 --- 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 --- The Fortran compiler identification is Intel --- 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 LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") --- 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 SCHEMES from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_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: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 5 -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 3 -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 7 -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 6 -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 4 -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields_idx.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_utils.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 2 -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.c -Linking Fortran static library libccpp.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar cr libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -Linking Fortran executable test_check -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_check.dir/test_check.f90.o -o test_check -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/test_fields.dir/test_fields.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_fields.c -Linking C executable test_fields -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -Linking Fortran executable test_init_finalize -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 17 -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 9 -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 12 -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 37 -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 49 -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 14 -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 23 -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 22 -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 20 -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 33 -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 45 -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 41 -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 21 -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 13 -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX-I -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 38 -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 39 -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 40 -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 51 -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 42 -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 15 -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 16 -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 36 -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 27 -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 44 -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 26 -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 24 -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 11 -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 19 -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 81 -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 25 -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 47 -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 48 -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 75 -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 71 -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 82 -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 53 -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 88 -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 77 -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 78 -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 79 -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 56 -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 64 -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 72 -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 90 -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 59 -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 50 -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 58 -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 62 -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 65 -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 57 -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 94 -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 69 -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 85 -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 89 -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 54 -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 93 -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_noahmp_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_noahmp_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 63 -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 97 -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_noahmp_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_noahmp_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_noahmp_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_noahmp_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_noahmp_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_noahmp_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 96 -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_noahmp_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_noahmp_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 92 -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 95 -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_noahmp_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_noahmp_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 66 -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 83 -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 60 -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 70 -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 86 -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 76 -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 52 -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 74 -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 84 -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 87 -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 91 -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 80 -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 73 -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 61 -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 67 -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 43 -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 68 -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 28 -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 55 -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 10 -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 18 -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 29 -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 30 -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 31 -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 32 -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 34 -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 35 -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 46 -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -Linking Fortran static library libccppphys.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccppphys.dir/link.txt --verbose=1 -/usr/bin/ar cr 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_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/mfscu.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/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o -/usr/bin/ranlib libccppphys.a -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[2]: Nothing to be done for `preinstall'. -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Release" --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccpp.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config-release.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_utils.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_errors.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_strings.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_suite.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_types.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_api.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccppphys.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config-release.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_noahmp_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_noahmp_fast_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_noahmp_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_noahmp_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_noahmp_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_noahmp_stochastics_cap.mod -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL on hera -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/configure.fv3 -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/modules.fv3 -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 COMP_BINDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake -C cpl FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -Duse_libMPI -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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -Duse_libMPI -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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpiifort -Duse_libMPI -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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -makefile:67: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -makefile:54: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -gmake -C io FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.0_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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_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_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake esmf_make_fragment FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Installation into "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC" -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; \ -gmake nems \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL CCPP_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp FV3_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" ; \ -test -x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" -CPPFLAGS += ESMF_VERSION_REVISION="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_MAJOR="8" -CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dom.Heinzeller) Tue Oct 29 17:42:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 17:42:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 17:42:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 17:42:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 17:42:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 17:42:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 17:42:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 17:42:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 17:42:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 17:42:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -mpiifort -o /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cap.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libccppdriver.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3core.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3io.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libipd.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libgfsphys.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cpl.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libstochastic_physics.a -L/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/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' -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_20.exe" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_20.exe -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_20 BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' NEMS_BUILDOPT= clean -Will copy modules.nems and NEMS.x as fv3_20 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -+ elapsed=990 -+ echo 'Elapsed time 990 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp finished' -Elapsed time 990 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ readonly BUILD_TARGET=hera.intel -+ BUILD_TARGET=hera.intel -+ readonly 'MAKE_OPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf' -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf' -+ readonly BUILD_NAME=fv3_21 -+ BUILD_NAME=fv3_21 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -hfe06 -+ 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 -+ 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\W\W\3\=\Y* ]] -+ [[ 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 == *\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* ]] -+ NEMS_BUILDOPT= -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_21 BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf' NEMS_BUILDOPT= distclean -Will copy modules.nems and NEMS.x as fv3_21 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include" ; \ -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf --clean -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: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test_results.mk -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_21 BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf' NEMS_BUILDOPT= build -Will copy modules.nems and NEMS.x as fv3_21 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/modulefiles/hera.intel/fv3 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_21" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_21 -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/conf/configure.fv3.hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh" -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/configure_rules.mk:3: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=12000000 ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ; \ -) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ -exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" all - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -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 -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL" -mv fms.mk "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh hera.intel "$PATH_CCPP" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk \ - "CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"" NO NO ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/include ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf -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 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 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 slc of variable volume_fraction_of_unfrozen_soil_moisture 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 phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top 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 sec of variable seconds_elapsed_since_model_initialization 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 kbot of variable vertical_index_at_cloud_base 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 stc of variable soil_temperature 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 xlaixy of variable leaf_area_index 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 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 phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back 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 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 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 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 v10m of variable y_wind_at_10m 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 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 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 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 nmtvr of variable number_of_statistical_measures_of_subgrid_orography 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 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 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 ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial 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 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 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 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 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 levs of variable vertical_dimension 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 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 w_0 of variable coefficient_w_0 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 pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter 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 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 phy_myj_chkqlm of variable surface_layer_evaporation_switch 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 sdec of variable sine_of_solar_declination_angle 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 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 dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep 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 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 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 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 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 sinlat of variable sine_of_latitude 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 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 do_sfcperts of variable flag_for_stochastic_surface_perturbations 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 tsfc_ice of variable surface_skin_temperature_over_ice_interstitial 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 debug of variable flag_debug 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 u1 of variable x_wind_at_lowest_model_layer_for_diag 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 do_myjsfc of variable do_myjsfc 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 gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics 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 slopetype of variable surface_slope_classification 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 levh2o of variable vertical_dimension_of_h2o_forcing_data 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 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 save_q of variable tracer_concentration_save 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 cf_upi of variable convective_cloud_fraction_for_microphysics 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial 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 dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL 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 tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave 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 forcet of variable temperature_tendency_due_to_dynamics 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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 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 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 ntchmdiag of variable number_of_chemical_tracers_for_diagnostics 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 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 dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column 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 islmsk_cice of variable sea_land_ice_mask_cice 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 pgr of variable surface_air_pressure 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 nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling 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 nscav of variable number_of_tracers_scavenged 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 zorl_ice of variable surface_roughness_length_over_ice_interstitial 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 aero_in of variable flag_for_aerosol_input_MG 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 avg_max_length of variable time_interval_for_maximum_hourly_fields 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 kind_LOGICAL of variable kind_LOGICAL 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial 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 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 mdt of variable time_step_for_remapping_for_fast_physics 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 sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model 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 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 runoff of variable total_runoff 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 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 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 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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial 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 nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation 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 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 qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio 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 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 oceanfrac of variable sea_area_fraction 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 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 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 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 ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land 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 phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back 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 con_t0c of variable temperature_at_zero_celsius 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 dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling 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 shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term 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 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 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 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 mom4ice of variable flag_for_mom4_coupling 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 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 tsfcl of variable surface_skin_temperature_over_land 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ozphys -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 ozphys_2015 -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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme noahmpdrv -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 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 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_noahmp_pre -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 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 mp_thompson_post -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 gwdps_post -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 lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme mynnrad_post -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 lsm_noah -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme dcyc2t3_post -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -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 cloud_area_fraction -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 conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep -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 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 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 explicit_rainfall_rate_from_previous_timestep -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_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_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -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 graupel_precipitation_rate_from_previous_timestep -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_precipitation_rate_from_previous_timestep -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 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 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 namelist_filename_for_internal_file_reads -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_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_precipitation_rate_from_previous_timestep -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_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 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 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 162 schemes to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.mk, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 15 auto-generated caps to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.mk and /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ ./build_ccpp.sh hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk 'CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/lib from /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -DNETCDF_DIR=/apps/netcdf/4.7.0/intel/18.0.5.274 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DOPENMP=ON -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 18.0.0.20180823 --- The CXX compiler identification is Intel 18.0.0.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 --- 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 --- The Fortran compiler identification is Intel --- 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 LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") --- 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 SCHEMES from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_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: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 5 -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 3 -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 7 -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 6 -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 4 -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 5%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields_idx.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_utils.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 2 -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.c -Linking Fortran static library libccpp.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar cr libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -Linking Fortran executable test_check -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_check.dir/test_check.f90.o -o test_check -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/test_fields.dir/test_fields.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_fields.c -Linking C executable test_fields -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -Linking Fortran executable test_init_finalize -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 9%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 36 -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 9 -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 12 -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 17 -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 40 -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 41 -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 48 -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 14 -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 15 -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 18 -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 22 -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 24 -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 29 -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 35 -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 16 -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 44 -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 13 -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 90 -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX-I -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 38 -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 39 -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 37 -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 27 -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 34 -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 43 -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 26 -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 21 -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 23 -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 11 -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 19 -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 80 -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 25 -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 46 -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 47 -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 70 -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 87 -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 59 -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 89 -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 81 -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 76 -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 77 -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 78 -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 50 -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 63 -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 74 -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 73 -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 88 -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 60 -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 49 -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 64 -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 71 -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 75 -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 92 -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmgshoc_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmgshoc_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 56 -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 68 -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 55 -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmgshoc_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmgshoc_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 84 -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmgshoc_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmgshoc_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 53 -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 91 -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmgshoc_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmgshoc_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 61 -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmg_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmg_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 94 -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmg_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmg_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 95 -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmg_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmg_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmg_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmg_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 58 -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 57 -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 54 -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 66 -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 97 -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_satmedmf_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_satmedmf_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_satmedmf_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_satmedmf_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_satmedmf_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_satmedmf_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 96 -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_satmedmf_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_satmedmf_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 93 -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmg_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmg_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_csawmgshoc_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_csawmgshoc_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_satmedmf_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_satmedmf_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 65 -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 82 -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 52 -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 69 -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 86 -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 83 -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 79 -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 20 -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 85 -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 62 -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 72 -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 51 -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 42 -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 67 -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 28 -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 10 -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 30 -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 31 -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 32 -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 33 -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 45 -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -Linking Fortran static library libccppphys.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccppphys.dir/link.txt --verbose=1 -/usr/bin/ar cr 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_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/mfscu.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/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o -/usr/bin/ranlib libccppphys.a -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[2]: Nothing to be done for `preinstall'. -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Release" --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccpp.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config-release.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_utils.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_errors.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_strings.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_suite.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_types.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_api.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccppphys.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config-release.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmgshoc_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmgshoc_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmgshoc_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmgshoc_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmgshoc_stochastics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmg_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmg_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmg_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmg_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_csawmg_stochastics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_satmedmf_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_satmedmf_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_satmedmf_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_satmedmf_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_satmedmf_stochastics_cap.mod -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL on hera -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/configure.fv3 -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/modules.fv3 -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 COMP_BINDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake -C cpl FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -Duse_libMPI -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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -Duse_libMPI -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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpiifort -Duse_libMPI -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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -makefile:67: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -makefile:54: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -gmake -C io FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.0_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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_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_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake esmf_make_fragment FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Installation into "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC" -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; \ -gmake nems \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL CCPP_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp FV3_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" ; \ -test -x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" -CPPFLAGS += ESMF_VERSION_REVISION="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_MAJOR="8" -CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dom.Heinzeller) Tue Oct 29 18:06:42 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 18:06:42 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 18:06:42 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 18:06:42 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 18:06:42 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 18:06:42 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 18:06:42 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 18:06:42 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 18:06:42 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 18:06:42 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -mpiifort -o /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cap.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libccppdriver.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3core.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3io.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libipd.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libgfsphys.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cpl.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libstochastic_physics.a -L/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/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' -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_21.exe" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_21.exe -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_21 BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf' NEMS_BUILDOPT= clean -Will copy modules.nems and NEMS.x as fv3_21 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -+ elapsed=1097 -+ echo 'Elapsed time 1097 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf finished' -Elapsed time 1097 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ readonly BUILD_TARGET=hera.intel -+ BUILD_TARGET=hera.intel -+ readonly 'MAKE_OPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y' -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y' -+ readonly BUILD_NAME=fv3_22 -+ BUILD_NAME=fv3_22 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -hfe06 -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y into fv3_22.exe on hera.intel' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y into fv3_22.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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\W\W\3\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ NEMS_BUILDOPT= -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_22 BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y' NEMS_BUILDOPT= distclean -Will copy modules.nems and NEMS.x as fv3_22 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include" ; \ -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 --clean -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: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test_results.mk -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_22 BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y' NEMS_BUILDOPT= build -Will copy modules.nems and NEMS.x as fv3_22 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/modulefiles/hera.intel/fv3 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_22" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_22 -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/conf/configure.fv3.hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh" -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/configure_rules.mk:3: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=12000000 ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ; \ -) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ -exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" all - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -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 -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL" -mv fms.mk "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh hera.intel "$PATH_CCPP" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk \ - "CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"" NO NO ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/include ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 -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_v15.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_v15plus.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 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 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 slc of variable volume_fraction_of_unfrozen_soil_moisture 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 phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top 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 sec of variable seconds_elapsed_since_model_initialization 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 kbot of variable vertical_index_at_cloud_base 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 stc of variable soil_temperature 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 xlaixy of variable leaf_area_index 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 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 phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back 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 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 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 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 v10m of variable y_wind_at_10m 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 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 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 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 nmtvr of variable number_of_statistical_measures_of_subgrid_orography 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 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 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 ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial 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 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 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 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 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 levs of variable vertical_dimension 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 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 w_0 of variable coefficient_w_0 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 pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter 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 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 phy_myj_chkqlm of variable surface_layer_evaporation_switch 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 sdec of variable sine_of_solar_declination_angle 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 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 dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep 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 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 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 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 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 sinlat of variable sine_of_latitude 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 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 do_sfcperts of variable flag_for_stochastic_surface_perturbations 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 tsfc_ice of variable surface_skin_temperature_over_ice_interstitial 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 debug of variable flag_debug 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 u1 of variable x_wind_at_lowest_model_layer_for_diag 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 do_myjsfc of variable do_myjsfc 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 gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics 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 slopetype of variable surface_slope_classification 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 levh2o of variable vertical_dimension_of_h2o_forcing_data 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 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 save_q of variable tracer_concentration_save 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 cf_upi of variable convective_cloud_fraction_for_microphysics 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial 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 dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL 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 tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave 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 forcet of variable temperature_tendency_due_to_dynamics 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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 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 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 ntchmdiag of variable number_of_chemical_tracers_for_diagnostics 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 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 dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column 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 islmsk_cice of variable sea_land_ice_mask_cice 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 pgr of variable surface_air_pressure 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 nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling 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 nscav of variable number_of_tracers_scavenged 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 zorl_ice of variable surface_roughness_length_over_ice_interstitial 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 aero_in of variable flag_for_aerosol_input_MG 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 avg_max_length of variable time_interval_for_maximum_hourly_fields 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 kind_LOGICAL of variable kind_LOGICAL 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial 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 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 mdt of variable time_step_for_remapping_for_fast_physics 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 sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model 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 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 runoff of variable total_runoff 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 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 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 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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial 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 nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation 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 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 qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio 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 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 oceanfrac of variable sea_area_fraction 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 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 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 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 ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land 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 phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back 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 con_t0c of variable temperature_at_zero_celsius 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 dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling 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 shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term 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 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 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 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 mom4ice of variable flag_for_mom4_coupling 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 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 tsfcl of variable surface_skin_temperature_over_land 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ozphys -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 ozphys_2015 -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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme noahmpdrv -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 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 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_noahmp_pre -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 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 mp_thompson_post -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 gwdps_post -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 lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme mynnrad_post -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 lsm_noah -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme dcyc2t3_post -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -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 cloud_area_fraction -INFO: filtering out variable cloud_condensed_water_conversion_threshold -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_water_to_rain -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep -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 do_myjsfc -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable explicit_rainfall_rate_from_previous_timestep -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_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_shoc_after_convection -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 graupel_precipitation_rate_from_previous_timestep -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_precipitation_rate_from_previous_timestep -INFO: filtering out variable ice_supersaturation_threshold -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_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable liquid_water_density -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable number_of_snow_layers -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_precipitation_rate_from_previous_timestep -INFO: filtering out variable snow_temperature -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -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 turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 162 schemes to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.mk, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 29 auto-generated caps to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.mk and /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ ./build_ccpp.sh hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk 'CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/lib from /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -DNETCDF_DIR=/apps/netcdf/4.7.0/intel/18.0.5.274 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DOPENMP=ON -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 18.0.0.20180823 --- The CXX compiler identification is Intel 18.0.0.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 --- 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 --- The Fortran compiler identification is Intel --- 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 LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") --- 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 SCHEMES from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15_stochastics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_stochastics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_CPT_v0_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_CPT_v0_fast_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_CPT_v0_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_CPT_v0_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_CPT_v0_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_CPT_v0_stochastics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GSD_v0_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GSD_v0_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GSD_v0_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GSD_v0_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GSD_v0_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: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 3 -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 6 -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 4 -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 5 -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 2 -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 7 -[ 6%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields_idx.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_utils.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.c -Linking Fortran static library libccpp.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar cr libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -Linking Fortran executable test_check -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_check.dir/test_check.f90.o -o test_check -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 8%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/test_fields.dir/test_fields.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_fields.c -Linking C executable test_fields -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -O2 -fPIC -qopenmp -qopenmp -O2 -fPIC CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -Linking Fortran executable test_init_finalize -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 9%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 9%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 9%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 11 -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 16 -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 34 -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 45 -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 13 -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 14 -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 17 -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 21 -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 27 -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 15 -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 41 -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 38 -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 12 -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 84 -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX-I -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 35 -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 36 -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 37 -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 47 -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 39 -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 9 -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 33 -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 25 -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 24 -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 20 -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 22 -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 10 -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 18 -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 23 -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 43 -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 44 -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 69 -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 32 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 85 -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 75 -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 81 -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 83 -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 49 -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 59 -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 66 -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 82 -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 54 -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 46 -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 53 -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 57 -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 60 -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 64 -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 52 -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 74 -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 51 -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 71 -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 86 -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 87 -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 50 -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 88 -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 63 -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 56 -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 89 -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 90 -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 92 -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 91 -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_CPT_v0_fast_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_cpt_v0_fast_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_cpt_v0_fast_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 62 -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 55 -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 68 -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 95 -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_CPT_v0_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_cpt_v0_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_cpt_v0_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_CPT_v0_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_cpt_v0_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_cpt_v0_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_CPT_v0_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_cpt_v0_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_cpt_v0_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 94 -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_CPT_v0_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_cpt_v0_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_cpt_v0_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 72 -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 78 -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 73 -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 67 -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GSD_v0_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gsd_v0_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gsd_v0_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 80 -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 61 -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 97 -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GSD_v0_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gsd_v0_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gsd_v0_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 98 -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GSD_v0_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gsd_v0_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gsd_v0_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GSD_v0_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gsd_v0_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gsd_v0_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 93 -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_CPT_v0_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_cpt_v0_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_cpt_v0_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_gfdlmp_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_gfdlmp_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_v15plus_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_v15plus_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_v15plus_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 96 -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GSD_v0_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gsd_v0_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gsd_v0_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 65 -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 79 -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 70 -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 48 -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 77 -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 76 -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 19 -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 58 -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 26 -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 28 -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 29 -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 30 -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 31 -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 32 -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 40 -[ 99%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 42 -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -Linking Fortran static library libccppphys.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccppphys.dir/link.txt --verbose=1 -/usr/bin/ar cr 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_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/mfscu.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/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o -/usr/bin/ranlib libccppphys.a -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 -[ 7%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 8%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 8%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 9%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15plus_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[2]: Nothing to be done for `preinstall'. -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Release" --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccpp.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config-release.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_utils.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_errors.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_strings.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_suite.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_types.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_api.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccppphys.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config-release.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_fast_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_gfdlmp_stochastics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_v15_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_v15_fast_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_v15_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_v15_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_v15_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_v15_stochastics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_fast_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_v15plus_stochastics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_cpt_v0_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_cpt_v0_fast_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_cpt_v0_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_cpt_v0_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_cpt_v0_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_cpt_v0_stochastics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gsd_v0_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gsd_v0_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gsd_v0_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gsd_v0_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gsd_v0_stochastics_cap.mod -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL on hera -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/configure.fv3 -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/modules.fv3 -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 COMP_BINDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake -C cpl FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -Duse_libMPI -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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -Duse_libMPI -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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpiifort -Duse_libMPI -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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -makefile:67: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DOVERLOAD_R4 CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -makefile:54: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -gmake -C io FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.0_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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_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_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake esmf_make_fragment FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Installation into "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC" -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; \ -gmake nems \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL CCPP_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp FV3_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" ; \ -test -x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" -CPPFLAGS += ESMF_VERSION_REVISION="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_MAJOR="8" -CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dom.Heinzeller) Tue Oct 29 18:32:07 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 18:32:07 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 18:32:07 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 18:32:07 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 18:32:07 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 18:32:07 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 18:32:07 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 18:32:07 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 18:32:07 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 18:32:07 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -mpiifort -o /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cap.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libccppdriver.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3core.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3io.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libipd.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libgfsphys.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cpl.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libstochastic_physics.a -L/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/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' -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_22.exe" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_22.exe -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_22 BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y' NEMS_BUILDOPT= clean -Will copy modules.nems and NEMS.x as fv3_22 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -+ elapsed=1180 -+ echo 'Elapsed time 1180 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y finished' -Elapsed time 1180 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y finished -+ SECONDS=0 -+ [[ 3 -lt 2 ]] -+ readonly PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ readonly APP=standaloneFV3 -+ APP=standaloneFV3 -+ readonly BUILD_NAME=fv3_2 -+ BUILD_NAME=fv3_2 -+ hostname -hfe06 -+ echo 'Compiling app standaloneFV3 into fv3_2.exe' -Compiling app standaloneFV3 into fv3_2.exe -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/.. -+ rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS/exe/NEMS.x -+ rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS/src/conf/modules.nems -+ set +e -+ ./NEMS/NEMSAppBuilder app=standaloneFV3 -ls: cannot access ../conf/component_*.mk: No such file or directory -NEMSAppBuilder: make app=standaloneFV3 distclean -Convert /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/standaloneFV3.appBuilder -...into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/standaloneFV3.appBuilder.mk -Include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/standaloneFV3.appBuilder.mk -echo 'FMS FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec make -f makefile.temp.clean clean -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec make \ - -k cleanall FMS_DIR=/dev/null -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; make "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test_results.mk -NEMSAppBuilder: make app=standaloneFV3 build -Convert /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/standaloneFV3.appBuilder -...into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/standaloneFV3.appBuilder.mk -Include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/standaloneFV3.appBuilder.mk -echo 'FMS FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/conf/configure.fv3.hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/modulefiles/hera.intel/fv3 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh" -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/configure_rules.mk:3: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk: No such file or directory -make -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" TEST -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=12000000 ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ; \ -) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ -exec make all - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -Building dependencies ... -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_data.F90 -o ../mpp/mpp_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_pset.F90 -o ../mpp/mpp_pset.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_efp.F90 -o ../mpp/mpp_efp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_domains.F90 -o ../mpp/mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_io.F90 -o ../mpp/mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../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 -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../fms/fms_io.F90 -o ../fms/fms_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../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 -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../block_control/block_control.F90 -o ../block_control/block_control.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_output.F90 -o ../diag_manager/diag_output.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_util.F90 -o ../diag_manager/diag_util.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_manager.F90 -o ../diag_manager/diag_manager.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../time_interp/time_interp_external.F90 -o ../time_interp/time_interp_external.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../data_override/data_override.F90 -o ../data_override/data_override.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_input.F90 -o ../drifters/drifters_input.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_core.F90 -o ../drifters/drifters_core.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_comm.F90 -o ../drifters/drifters_comm.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../fms/test_fms_io.F90 -o ../fms/test_fms_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/test_horiz_interp.F90 -o ../horiz_interp/test_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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_utilities.F90 -o ../mpp/mpp_utilities.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/test_mpp.F90 -o ../mpp/test_mpp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/test_mpp_io.F90 -o ../mpp/test_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/test_mpp_pset.F90 -o ../mpp/test_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/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 -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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 -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/apps/netcdf/4.7.0/intel/18.0.5.274/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 -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/apps/netcdf/4.7.0/intel/18.0.5.274/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 -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -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 -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -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 -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -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 -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -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 -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mpp/affinity.c -o ../mpp/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/apps/netcdf/4.7.0/intel/18.0.5.274/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 -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/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 -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL" -mv fms.mk "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL"/. -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -Compiling into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL on hera -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/configure.fv3 -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/modules.fv3 -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; \ - exec make COMP=FV3 COMP_SRCDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 COMP_BINDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL nemsinstall - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Building dependencies ... -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -make -C cpl FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -make -C gfsphysics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -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/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -a - physics/co2hc.o -a - physics/date_def.o -a - physics/dcyc2.o -a - physics/dcyc2.pre.rad.o -a - physics/efield.o -a - physics/get_prs.o -a - physics/gocart_tracer_config_stub.o -a - physics/gscond.o -a - physics/gscondp.o -a - physics/gwdc.o -a - physics/gwdps.o -a - physics/ugwp_driver_v0.o -a - physics/cires_orowam2017.o -a - physics/h2o_def.o -a - physics/h2oc.o -a - physics/h2ohdc.o -a - physics/h2ophys.o -a - physics/ideaca.o -a - physics/idea_co2.o -a - physics/idea_composition.o -a - physics/idea_dissipation.o -a - physics/idea_h2o.o -a - physics/idea_ion.o -a - physics/idea_o2_o3.o -a - physics/idea_phys.o -a - physics/idea_solar_heating.o -a - physics/idea_tracer.o -a - physics/iounitdef.o -a - physics/lrgsclr.o -a - physics/mersenne_twister.o -a - physics/mfpbl.o -a - physics/mfpblt.o -a - physics/mfpbltq.o -a - physics/mfscu.o -a - physics/mfscuq.o -a - physics/module_bfmicrophysics.o -a - physics/moninedmf.o -a - physics/moninedmf_hafs.o -a - physics/moninp.o -a - physics/moninp1.o -a - physics/moninq.o -a - physics/moninq1.o -a - physics/moninshoc.o -a - physics/mstadb.o -a - physics/mstadbtn.o -a - physics/mstadbtn2.o -a - physics/mstcnv.o -a - physics/namelist_soilveg.o -a - physics/ozne_def.o -a - physics/iccn_def.o -a - physics/aerclm_def.o -a - physics/ozphys.o -a - physics/ozphys_2015.o -a - physics/physparam.o -a - physics/precpd.o -a - physics/precpd_shoc.o -a - physics/precpdp.o -a - physics/progt2.o -a - physics/progtm_module.o -a - physics/rad_initialize.o -a - physics/radiation_aerosols.o -a - physics/radiation_astronomy.o -a - physics/radiation_clouds.o -a - physics/radiation_gases.o -a - physics/radiation_surface.o -a - physics/radlw_datatb.o -a - physics/radlw_main.o -a - physics/radlw_param.o -a - physics/radsw_datatb.o -a - physics/radsw_main.o -a - physics/radsw_param.o -a - physics/rascnvv2.o -a - physics/rayleigh_damp.o -a - physics/rayleigh_damp_mesopause.o -a - physics/samfaerosols.o -a - physics/samfdeepcnv.o -a - physics/samfshalcnv.o -a - physics/sascnv.o -a - physics/sascnvn.o -a - physics/satmedmfvdif.o -a - physics/satmedmfvdifq.o -a - physics/set_soilveg.o -a - physics/sfc_cice.o -a - physics/sfc_diag.o -a - physics/sfc_diff.o -a - physics/sfc_drv.o -a - physics/sfc_noahmp_drv.o -a - physics/sfc_nst.o -a - physics/sfc_ocean.o -a - physics/sfc_sice.o -a - physics/sflx.o -a - physics/shalcnv.o -a - physics/shalcv.o -a - physics/shalcv_1lyr.o -a - physics/shalcv_fixdp.o -a - physics/shalcv_opr.o -a - physics/tracer_const_h.o -a - physics/tridi2t3.o -a - physics/calpreciptype.o -a - physics/funcphys.o -a - physics/gcm_shoc.o -a - physics/get_prs_fv3.o -a - physics/h2ointerp.o -a - physics/module_nst_model.o -a - physics/module_nst_parameters.o -a - physics/module_nst_water_prop.o -a - physics/ozinterp.o -a - physics/module_wrf_utl.o -a - physics/noahmp_tables.o -a - physics/module_sf_noahmplsm.o -a - physics/module_sf_noahmp_glacier.o -a - physics/iccninterp.o -a - physics/aerinterp.o -a - physics/wam_f107_kp_mod.o -a - physics/aer_cloud.o -a - physics/cldmacro.o -a - physics/cldwat2m_micro.o -a - physics/gfs_phy_tracer_config.o -a - physics/machine.o -a - physics/num_parthds.o -a - physics/sfcsub.o -a - physics/wv_saturation.o -a - physics/GFDL_parse_tracers.o -a - physics/gcycle.o -a - physics/cires_ugwp_initialize.o -a - physics/cires_ugwp_module.o -a - physics/cires_ugwp_utils.o -a - physics/cires_ugwp_triggers.o -a - physics/cires_ugwp_solvers.o -a - physics/cires_vert_lsatdis.o -a - physics/cires_vert_orodis.o -a - physics/cires_vert_wmsdis.o -a - physics/gfdl_cloud_microphys.o -a - physics/micro_mg_utils.o -a - physics/micro_mg2_0.o -a - physics/micro_mg3_0.o -a - physics/m_micro_driver.o -a - physics/cs_conv.o -a - physics/GFS_debug.o -a - physics/module_mp_radar.o -a - physics/module_mp_thompson_gfs.o -a - physics/module_mp_wsm6_fv3.o -a - physics/physcons.o -a - physics/surface_perturbation.o -a - GFS_layer/GFS_abstraction_layer.o -a - GFS_layer/GFS_diagnostics.o -a - GFS_layer/GFS_driver.o -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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -make -C ipd FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -make -C io FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.0_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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_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_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -make -C atmos_cubed_sphere FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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_cmp.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_cmp.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 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -make -C ../stochastic_physics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -make libfv3cap.a FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -make esmf_make_fragment FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Installation into "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL" complete! - -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC" -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; \ -make nems \ - COMPONENTS="FMS FV3" \ - FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL FV3_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" ; \ -test -x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -Components in linker order: FV3 FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" -CPPFLAGS += ESMF_VERSION_REVISION="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_MAJOR="8" -CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -cd ENS_Cpl && make stub -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dom.Heinzeller) Tue Oct 29 05:22:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 05:22:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 05:22:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 05:22:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 05:22:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 05:22:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 05:22:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 05:22:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 05:22:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 05:22:52 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -mpiifort -o /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cap.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3core.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3io.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libipd.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libgfsphys.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cpl.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libstochastic_physics.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/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' -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x is created. -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -+ RC=0 -+ set -e -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/.. -+ [[ 0 -ne 0 ]] -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../tests/fv3_2.exe -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../tests/modules.fv3_2 -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS/src -+ gmake clean -Components in linker order: -rm -f -f *.tmp.f90 *.lst *.o *.mod lm map -cd ENS_Cpl ; gmake clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ gmake cleanall -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -makefile:67: depend: No such file or directory -Building dependencies ... -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -+ rm -rf FV3_INSTALL -+ rm -rf nems_dir -+ elapsed=997 -+ echo 'Elapsed time 997 seconds. Compiling app standaloneFV3 finished' -Elapsed time 997 seconds. Compiling app standaloneFV3 finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ readonly BUILD_TARGET=hera.intel -+ BUILD_TARGET=hera.intel -+ readonly MAKE_OPT=32BIT=Y -+ MAKE_OPT=32BIT=Y -+ readonly BUILD_NAME=fv3_3 -+ BUILD_NAME=fv3_3 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -hfe06 -+ echo 'Compiling 32BIT=Y into fv3_3.exe on hera.intel' -Compiling 32BIT=Y into fv3_3.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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ [[ 32BIT=Y == *\W\W\3\=\Y* ]] -+ [[ 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ NEMS_BUILDOPT= -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_3 BUILD_ENV=hera.intel FV3_MAKEOPT=32BIT=Y NEMS_BUILDOPT= distclean -Will copy modules.nems and NEMS.x as fv3_3 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake 32BIT=Y -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test_results.mk -+ gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_3 BUILD_ENV=hera.intel FV3_MAKEOPT=32BIT=Y NEMS_BUILDOPT= build -Will copy modules.nems and NEMS.x as fv3_3 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/modulefiles/hera.intel/fv3 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_3" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_3 -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/conf/configure.fv3.hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh" -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/configure_rules.mk:3: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=12000000 ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ; \ -) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ -exec gmake 32BIT=Y all - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/apps/netcdf/4.7.0/intel/18.0.5.274/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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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/apps/netcdf/4.7.0/intel/18.0.5.274/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 -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -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 -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -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 -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -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 -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -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 -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mpp/affinity.c -o ../mpp/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/apps/netcdf/4.7.0/intel/18.0.5.274/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/apps/netcdf/4.7.0/intel/18.0.5.274/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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_utilities.F90 -o ../mpp/mpp_utilities.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/test_mpp_pset.F90 -o ../mpp/test_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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_domains.F90 -o ../mpp/mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/drifters_comm.F90 -o ../drifters/drifters_comm.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 ../fms/fms_io.F90 -o ../fms/fms_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/test_mpp.F90 -o ../mpp/test_mpp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 ../fms/test_fms_io.F90 -o ../fms/test_fms_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/test_horiz_interp.F90 -o ../horiz_interp/test_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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_util.F90 -o ../diag_manager/diag_util.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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_manager.F90 -o ../diag_manager/diag_manager.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 ../data_override/data_override.F90 -o ../data_override/data_override.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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 ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL" -mv fms.mk "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -Compiling 32BIT=Y into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL on hera -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/configure.fv3 -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/modules.fv3 -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 COMP_BINDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=Y nemsinstall - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake -C cpl FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -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/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -a - physics/co2hc.o -a - physics/date_def.o -a - physics/dcyc2.o -a - physics/dcyc2.pre.rad.o -a - physics/efield.o -a - physics/get_prs.o -a - physics/gocart_tracer_config_stub.o -a - physics/gscond.o -a - physics/gscondp.o -a - physics/gwdc.o -a - physics/gwdps.o -a - physics/ugwp_driver_v0.o -a - physics/cires_orowam2017.o -a - physics/h2o_def.o -a - physics/h2oc.o -a - physics/h2ohdc.o -a - physics/h2ophys.o -a - physics/ideaca.o -a - physics/idea_co2.o -a - physics/idea_composition.o -a - physics/idea_dissipation.o -a - physics/idea_h2o.o -a - physics/idea_ion.o -a - physics/idea_o2_o3.o -a - physics/idea_phys.o -a - physics/idea_solar_heating.o -a - physics/idea_tracer.o -a - physics/iounitdef.o -a - physics/lrgsclr.o -a - physics/mersenne_twister.o -a - physics/mfpbl.o -a - physics/mfpblt.o -a - physics/mfpbltq.o -a - physics/mfscu.o -a - physics/mfscuq.o -a - physics/module_bfmicrophysics.o -a - physics/moninedmf.o -a - physics/moninedmf_hafs.o -a - physics/moninp.o -a - physics/moninp1.o -a - physics/moninq.o -a - physics/moninq1.o -a - physics/moninshoc.o -a - physics/mstadb.o -a - physics/mstadbtn.o -a - physics/mstadbtn2.o -a - physics/mstcnv.o -a - physics/namelist_soilveg.o -a - physics/ozne_def.o -a - physics/iccn_def.o -a - physics/aerclm_def.o -a - physics/ozphys.o -a - physics/ozphys_2015.o -a - physics/physparam.o -a - physics/precpd.o -a - physics/precpd_shoc.o -a - physics/precpdp.o -a - physics/progt2.o -a - physics/progtm_module.o -a - physics/rad_initialize.o -a - physics/radiation_aerosols.o -a - physics/radiation_astronomy.o -a - physics/radiation_clouds.o -a - physics/radiation_gases.o -a - physics/radiation_surface.o -a - physics/radlw_datatb.o -a - physics/radlw_main.o -a - physics/radlw_param.o -a - physics/radsw_datatb.o -a - physics/radsw_main.o -a - physics/radsw_param.o -a - physics/rascnvv2.o -a - physics/rayleigh_damp.o -a - physics/rayleigh_damp_mesopause.o -a - physics/samfaerosols.o -a - physics/samfdeepcnv.o -a - physics/samfshalcnv.o -a - physics/sascnv.o -a - physics/sascnvn.o -a - physics/satmedmfvdif.o -a - physics/satmedmfvdifq.o -a - physics/set_soilveg.o -a - physics/sfc_cice.o -a - physics/sfc_diag.o -a - physics/sfc_diff.o -a - physics/sfc_drv.o -a - physics/sfc_noahmp_drv.o -a - physics/sfc_nst.o -a - physics/sfc_ocean.o -a - physics/sfc_sice.o -a - physics/sflx.o -a - physics/shalcnv.o -a - physics/shalcv.o -a - physics/shalcv_1lyr.o -a - physics/shalcv_fixdp.o -a - physics/shalcv_opr.o -a - physics/tracer_const_h.o -a - physics/tridi2t3.o -a - physics/calpreciptype.o -a - physics/funcphys.o -a - physics/gcm_shoc.o -a - physics/get_prs_fv3.o -a - physics/h2ointerp.o -a - physics/module_nst_model.o -a - physics/module_nst_parameters.o -a - physics/module_nst_water_prop.o -a - physics/ozinterp.o -a - physics/module_wrf_utl.o -a - physics/noahmp_tables.o -a - physics/module_sf_noahmplsm.o -a - physics/module_sf_noahmp_glacier.o -a - physics/iccninterp.o -a - physics/aerinterp.o -a - physics/wam_f107_kp_mod.o -a - physics/aer_cloud.o -a - physics/cldmacro.o -a - physics/cldwat2m_micro.o -a - physics/gfs_phy_tracer_config.o -a - physics/machine.o -a - physics/num_parthds.o -a - physics/sfcsub.o -a - physics/wv_saturation.o -a - physics/GFDL_parse_tracers.o -a - physics/gcycle.o -a - physics/cires_ugwp_initialize.o -a - physics/cires_ugwp_module.o -a - physics/cires_ugwp_utils.o -a - physics/cires_ugwp_triggers.o -a - physics/cires_ugwp_solvers.o -a - physics/cires_vert_lsatdis.o -a - physics/cires_vert_orodis.o -a - physics/cires_vert_wmsdis.o -a - physics/gfdl_cloud_microphys.o -a - physics/micro_mg_utils.o -a - physics/micro_mg2_0.o -a - physics/micro_mg3_0.o -a - physics/m_micro_driver.o -a - physics/cs_conv.o -a - physics/GFS_debug.o -a - physics/module_mp_radar.o -a - physics/module_mp_thompson_gfs.o -a - physics/module_mp_wsm6_fv3.o -a - physics/physcons.o -a - physics/surface_perturbation.o -a - GFS_layer/GFS_abstraction_layer.o -a - GFS_layer/GFS_diagnostics.o -a - GFS_layer/GFS_driver.o -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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -gmake -C ipd FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -makefile:54: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -gmake -C io FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.0_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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_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_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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_cmp.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_cmp.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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align 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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake esmf_make_fragment FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Installation into "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC" -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; \ -gmake nems \ - COMPONENTS="FMS FV3" \ - FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL FV3_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" ; \ -test -x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -Components in linker order: FV3 FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" -CPPFLAGS += ESMF_VERSION_REVISION="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_MAJOR="8" -CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dom.Heinzeller) Tue Oct 29 05:34:33 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 05:34:33 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 05:34:33 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 05:34:33 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 05:34:33 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 05:34:33 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 05:34:33 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 05:34:33 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 05:34:33 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 05:34:33 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -mpiifort -o /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cap.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3core.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3io.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libipd.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libgfsphys.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cpl.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libstochastic_physics.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/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' -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_3.exe" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_3.exe -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_3 BUILD_ENV=hera.intel FV3_MAKEOPT=32BIT=Y NEMS_BUILDOPT= clean -Will copy modules.nems and NEMS.x as fv3_3 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake 32BIT=Y -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -+ elapsed=602 -+ echo 'Elapsed time 602 seconds. Compiling 32BIT=Y finished' -Elapsed time 602 seconds. Compiling 32BIT=Y finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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_4 -+ BUILD_NAME=fv3_4 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -hfe06 -+ 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 -+ 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ 32BIT=Y DEBUG=Y == *\C\C\P\P\=\Y* ]] -+ [[ 32BIT=Y DEBUG=Y == *\W\W\3\=\Y* ]] -+ [[ 32BIT=Y DEBUG=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ 32BIT=Y DEBUG=Y == *\R\E\P\R\O\=\Y* ]] -+ [[ 32BIT=Y DEBUG=Y == *\D\E\B\U\G\=\Y* ]] -+ NEMS_BUILDOPT=DEBUG=Y -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_4 BUILD_ENV=hera.intel 'FV3_MAKEOPT=32BIT=Y DEBUG=Y' NEMS_BUILDOPT=DEBUG=Y distclean -Will copy modules.nems and NEMS.x as fv3_4 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake 32BIT=Y DEBUG=Y -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test_results.mk -+ gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_4 BUILD_ENV=hera.intel 'FV3_MAKEOPT=32BIT=Y DEBUG=Y' NEMS_BUILDOPT=DEBUG=Y build -Will copy modules.nems and NEMS.x as fv3_4 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/modulefiles/hera.intel/fv3 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_4" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_4 -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/conf/configure.fv3.hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh" -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/configure_rules.mk:3: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=12000000 ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ; \ -) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ -exec gmake 32BIT=Y DEBUG=Y all - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -c ../memutils/memuse.c -o ../memutils/memuse.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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/apps/netcdf/4.7.0/intel/18.0.5.274/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/apps/netcdf/4.7.0/intel/18.0.5.274/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 -Converting pointers to allocatable components -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/apps/netcdf/4.7.0/intel/18.0.5.274/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/apps/netcdf/4.7.0/intel/18.0.5.274/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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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/apps/netcdf/4.7.0/intel/18.0.5.274/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 -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -c ../mpp/affinity.c -o ../mpp/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 -DDEBUG -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -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 -DDEBUG -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -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 -DDEBUG -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_utilities.F90 -o ../mpp/mpp_utilities.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/test_mpp_pset.F90 -o ../mpp/test_mpp_pset.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_domains.F90 -o ../mpp/mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/drifters_comm.F90 -o ../drifters/drifters_comm.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../fms/fms_io.F90 -o ../fms/fms_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/test_mpp.F90 -o ../mpp/test_mpp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../fms/test_fms_io.F90 -o ../fms/test_fms_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/field_manager.F90 -o ../field_manager/field_manager.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../fft/fft.F90 -o ../fft/fft.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/test_horiz_interp.F90 -o ../horiz_interp/test_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_output.F90 -o ../diag_manager/diag_output.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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_util.F90 -o ../diag_manager/diag_util.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../data_override/data_override.F90 -o ../data_override/data_override.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../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 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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 ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL" -mv fms.mk "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -Compiling 32BIT=Y DEBUG=Y into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL on hera -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/configure.fv3 -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/modules.fv3 -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 COMP_BINDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=Y DEBUG=Y nemsinstall - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake -C cpl FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -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/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_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_physics_driver.F90 > GFS_layer/GFS_physics_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -a - physics/co2hc.o -a - physics/date_def.o -a - physics/dcyc2.o -a - physics/dcyc2.pre.rad.o -a - physics/efield.o -a - physics/get_prs.o -a - physics/gocart_tracer_config_stub.o -a - physics/gscond.o -a - physics/gscondp.o -a - physics/gwdc.o -a - physics/gwdps.o -a - physics/ugwp_driver_v0.o -a - physics/cires_orowam2017.o -a - physics/h2o_def.o -a - physics/h2oc.o -a - physics/h2ohdc.o -a - physics/h2ophys.o -a - physics/ideaca.o -a - physics/idea_co2.o -a - physics/idea_composition.o -a - physics/idea_dissipation.o -a - physics/idea_h2o.o -a - physics/idea_ion.o -a - physics/idea_o2_o3.o -a - physics/idea_phys.o -a - physics/idea_solar_heating.o -a - physics/idea_tracer.o -a - physics/iounitdef.o -a - physics/lrgsclr.o -a - physics/mersenne_twister.o -a - physics/mfpbl.o -a - physics/mfpblt.o -a - physics/mfpbltq.o -a - physics/mfscu.o -a - physics/mfscuq.o -a - physics/module_bfmicrophysics.o -a - physics/moninedmf.o -a - physics/moninedmf_hafs.o -a - physics/moninp.o -a - physics/moninp1.o -a - physics/moninq.o -a - physics/moninq1.o -a - physics/moninshoc.o -a - physics/mstadb.o -a - physics/mstadbtn.o -a - physics/mstadbtn2.o -a - physics/mstcnv.o -a - physics/namelist_soilveg.o -a - physics/ozne_def.o -a - physics/iccn_def.o -a - physics/aerclm_def.o -a - physics/ozphys.o -a - physics/ozphys_2015.o -a - physics/physparam.o -a - physics/precpd.o -a - physics/precpd_shoc.o -a - physics/precpdp.o -a - physics/progt2.o -a - physics/progtm_module.o -a - physics/rad_initialize.o -a - physics/radiation_aerosols.o -a - physics/radiation_astronomy.o -a - physics/radiation_clouds.o -a - physics/radiation_gases.o -a - physics/radiation_surface.o -a - physics/radlw_datatb.o -a - physics/radlw_main.o -a - physics/radlw_param.o -a - physics/radsw_datatb.o -a - physics/radsw_main.o -a - physics/radsw_param.o -a - physics/rascnvv2.o -a - physics/rayleigh_damp.o -a - physics/rayleigh_damp_mesopause.o -a - physics/samfaerosols.o -a - physics/samfdeepcnv.o -a - physics/samfshalcnv.o -a - physics/sascnv.o -a - physics/sascnvn.o -a - physics/satmedmfvdif.o -a - physics/satmedmfvdifq.o -a - physics/set_soilveg.o -a - physics/sfc_cice.o -a - physics/sfc_diag.o -a - physics/sfc_diff.o -a - physics/sfc_drv.o -a - physics/sfc_noahmp_drv.o -a - physics/sfc_nst.o -a - physics/sfc_ocean.o -a - physics/sfc_sice.o -a - physics/sflx.o -a - physics/shalcnv.o -a - physics/shalcv.o -a - physics/shalcv_1lyr.o -a - physics/shalcv_fixdp.o -a - physics/shalcv_opr.o -a - physics/tracer_const_h.o -a - physics/tridi2t3.o -a - physics/calpreciptype.o -a - physics/funcphys.o -a - physics/gcm_shoc.o -a - physics/get_prs_fv3.o -a - physics/h2ointerp.o -a - physics/module_nst_model.o -a - physics/module_nst_parameters.o -a - physics/module_nst_water_prop.o -a - physics/ozinterp.o -a - physics/module_wrf_utl.o -a - physics/noahmp_tables.o -a - physics/module_sf_noahmplsm.o -a - physics/module_sf_noahmp_glacier.o -a - physics/iccninterp.o -a - physics/aerinterp.o -a - physics/wam_f107_kp_mod.o -a - physics/aer_cloud.o -a - physics/cldmacro.o -a - physics/cldwat2m_micro.o -a - physics/gfs_phy_tracer_config.o -a - physics/machine.o -a - physics/num_parthds.o -a - physics/sfcsub.o -a - physics/wv_saturation.o -a - physics/GFDL_parse_tracers.o -a - physics/gcycle.o -a - physics/cires_ugwp_initialize.o -a - physics/cires_ugwp_module.o -a - physics/cires_ugwp_utils.o -a - physics/cires_ugwp_triggers.o -a - physics/cires_ugwp_solvers.o -a - physics/cires_vert_lsatdis.o -a - physics/cires_vert_orodis.o -a - physics/cires_vert_wmsdis.o -a - physics/gfdl_cloud_microphys.o -a - physics/micro_mg_utils.o -a - physics/micro_mg2_0.o -a - physics/micro_mg3_0.o -a - physics/m_micro_driver.o -a - physics/cs_conv.o -a - physics/GFS_debug.o -a - physics/module_mp_radar.o -a - physics/module_mp_thompson_gfs.o -a - physics/module_mp_wsm6_fv3.o -a - physics/physcons.o -a - physics/surface_perturbation.o -a - GFS_layer/GFS_abstraction_layer.o -a - GFS_layer/GFS_diagnostics.o -a - GFS_layer/GFS_driver.o -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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -gmake -C ipd FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -makefile:54: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -gmake -C io FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.0_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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_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_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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_cmp.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_cmp.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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -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/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake esmf_make_fragment FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Installation into "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC" -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; \ -gmake nems DEBUG=Y \ - COMPONENTS="FMS FV3" \ - FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL FV3_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" ; \ -test -x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -Components in linker order: FV3 FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" -CPPFLAGS += ESMF_VERSION_REVISION="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_MAJOR="8" -CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dom.Heinzeller) Tue Oct 29 06:43:27 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 06:43:27 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 06:43:27 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 06:43:27 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 06:43:27 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 06:43:27 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 06:43:27 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 06:43:27 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 06:43:27 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 06:43:27 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -mpiifort -o /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cap.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3core.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3io.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libipd.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libgfsphys.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cpl.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libstochastic_physics.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/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' -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_4.exe" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_4.exe -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_4 BUILD_ENV=hera.intel 'FV3_MAKEOPT=32BIT=Y DEBUG=Y' NEMS_BUILDOPT=DEBUG=Y clean -Will copy modules.nems and NEMS.x as fv3_4 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake 32BIT=Y DEBUG=Y -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -+ elapsed=200 -+ echo 'Elapsed time 200 seconds. Compiling 32BIT=Y DEBUG=Y finished' -Elapsed time 200 seconds. Compiling 32BIT=Y DEBUG=Y finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ readonly BUILD_TARGET=hera.intel -+ BUILD_TARGET=hera.intel -+ readonly MAKE_OPT=REPRO=Y -+ MAKE_OPT=REPRO=Y -+ readonly BUILD_NAME=fv3_5 -+ BUILD_NAME=fv3_5 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -hfe06 -+ echo 'Compiling REPRO=Y into fv3_5.exe on hera.intel' -Compiling REPRO=Y into fv3_5.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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ REPRO=Y == *\C\C\P\P\=\Y* ]] -+ [[ REPRO=Y == *\W\W\3\=\Y* ]] -+ [[ REPRO=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y == *\R\E\P\R\O\=\Y* ]] -+ NEMS_BUILDOPT=REPRO=Y -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_5 BUILD_ENV=hera.intel FV3_MAKEOPT=REPRO=Y NEMS_BUILDOPT=REPRO=Y distclean -Will copy modules.nems and NEMS.x as fv3_5 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake REPRO=Y -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test_results.mk -+ gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_5 BUILD_ENV=hera.intel FV3_MAKEOPT=REPRO=Y NEMS_BUILDOPT=REPRO=Y build -Will copy modules.nems and NEMS.x as fv3_5 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/modulefiles/hera.intel/fv3 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_5" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_5 -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/conf/configure.fv3.hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh" -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/configure_rules.mk:3: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=12000000 ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ; \ -) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ -exec gmake REPRO=Y all - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../memutils/memuse.c -o ../memutils/memuse.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mpp/affinity.c -o ../mpp/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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_domains.F90 -o ../mpp/mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL" -mv fms.mk "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -Compiling REPRO=Y into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL on hera -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/configure.fv3 -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/modules.fv3 -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 COMP_BINDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL REPRO=Y nemsinstall - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake -C cpl FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -a - physics/co2hc.o -a - physics/date_def.o -a - physics/dcyc2.o -a - physics/dcyc2.pre.rad.o -a - physics/efield.o -a - physics/get_prs.o -a - physics/gocart_tracer_config_stub.o -a - physics/gscond.o -a - physics/gscondp.o -a - physics/gwdc.o -a - physics/gwdps.o -a - physics/ugwp_driver_v0.o -a - physics/cires_orowam2017.o -a - physics/h2o_def.o -a - physics/h2oc.o -a - physics/h2ohdc.o -a - physics/h2ophys.o -a - physics/ideaca.o -a - physics/idea_co2.o -a - physics/idea_composition.o -a - physics/idea_dissipation.o -a - physics/idea_h2o.o -a - physics/idea_ion.o -a - physics/idea_o2_o3.o -a - physics/idea_phys.o -a - physics/idea_solar_heating.o -a - physics/idea_tracer.o -a - physics/iounitdef.o -a - physics/lrgsclr.o -a - physics/mersenne_twister.o -a - physics/mfpbl.o -a - physics/mfpblt.o -a - physics/mfpbltq.o -a - physics/mfscu.o -a - physics/mfscuq.o -a - physics/module_bfmicrophysics.o -a - physics/moninedmf.o -a - physics/moninedmf_hafs.o -a - physics/moninp.o -a - physics/moninp1.o -a - physics/moninq.o -a - physics/moninq1.o -a - physics/moninshoc.o -a - physics/mstadb.o -a - physics/mstadbtn.o -a - physics/mstadbtn2.o -a - physics/mstcnv.o -a - physics/namelist_soilveg.o -a - physics/ozne_def.o -a - physics/iccn_def.o -a - physics/aerclm_def.o -a - physics/ozphys.o -a - physics/ozphys_2015.o -a - physics/physparam.o -a - physics/precpd.o -a - physics/precpd_shoc.o -a - physics/precpdp.o -a - physics/progt2.o -a - physics/progtm_module.o -a - physics/rad_initialize.o -a - physics/radiation_aerosols.o -a - physics/radiation_astronomy.o -a - physics/radiation_clouds.o -a - physics/radiation_gases.o -a - physics/radiation_surface.o -a - physics/radlw_datatb.o -a - physics/radlw_main.o -a - physics/radlw_param.o -a - physics/radsw_datatb.o -a - physics/radsw_main.o -a - physics/radsw_param.o -a - physics/rascnvv2.o -a - physics/rayleigh_damp.o -a - physics/rayleigh_damp_mesopause.o -a - physics/samfaerosols.o -a - physics/samfdeepcnv.o -a - physics/samfshalcnv.o -a - physics/sascnv.o -a - physics/sascnvn.o -a - physics/satmedmfvdif.o -a - physics/satmedmfvdifq.o -a - physics/set_soilveg.o -a - physics/sfc_cice.o -a - physics/sfc_diag.o -a - physics/sfc_diff.o -a - physics/sfc_drv.o -a - physics/sfc_noahmp_drv.o -a - physics/sfc_nst.o -a - physics/sfc_ocean.o -a - physics/sfc_sice.o -a - physics/sflx.o -a - physics/shalcnv.o -a - physics/shalcv.o -a - physics/shalcv_1lyr.o -a - physics/shalcv_fixdp.o -a - physics/shalcv_opr.o -a - physics/tracer_const_h.o -a - physics/tridi2t3.o -a - physics/calpreciptype.o -a - physics/funcphys.o -a - physics/gcm_shoc.o -a - physics/get_prs_fv3.o -a - physics/h2ointerp.o -a - physics/module_nst_model.o -a - physics/module_nst_parameters.o -a - physics/module_nst_water_prop.o -a - physics/ozinterp.o -a - physics/module_wrf_utl.o -a - physics/noahmp_tables.o -a - physics/module_sf_noahmplsm.o -a - physics/module_sf_noahmp_glacier.o -a - physics/iccninterp.o -a - physics/aerinterp.o -a - physics/wam_f107_kp_mod.o -a - physics/aer_cloud.o -a - physics/cldmacro.o -a - physics/cldwat2m_micro.o -a - physics/gfs_phy_tracer_config.o -a - physics/machine.o -a - physics/num_parthds.o -a - physics/sfcsub.o -a - physics/wv_saturation.o -a - physics/GFDL_parse_tracers.o -a - physics/gcycle.o -a - physics/cires_ugwp_initialize.o -a - physics/cires_ugwp_module.o -a - physics/cires_ugwp_utils.o -a - physics/cires_ugwp_triggers.o -a - physics/cires_ugwp_solvers.o -a - physics/cires_vert_lsatdis.o -a - physics/cires_vert_orodis.o -a - physics/cires_vert_wmsdis.o -a - physics/gfdl_cloud_microphys.o -a - physics/micro_mg_utils.o -a - physics/micro_mg2_0.o -a - physics/micro_mg3_0.o -a - physics/m_micro_driver.o -a - physics/cs_conv.o -a - physics/GFS_debug.o -a - physics/module_mp_radar.o -a - physics/module_mp_thompson_gfs.o -a - physics/module_mp_wsm6_fv3.o -a - physics/physcons.o -a - physics/surface_perturbation.o -a - GFS_layer/GFS_abstraction_layer.o -a - GFS_layer/GFS_diagnostics.o -a - GFS_layer/GFS_driver.o -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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -gmake -C ipd FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -makefile:54: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -gmake -C io FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.0_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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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_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_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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_cmp.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_cmp.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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake esmf_make_fragment FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Installation into "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC" -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; \ -gmake nems REPRO=Y \ - COMPONENTS="FMS FV3" \ - FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL FV3_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" ; \ -test -x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -Components in linker order: FV3 FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" -CPPFLAGS += ESMF_VERSION_REVISION="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_MAJOR="8" -CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dom.Heinzeller) Tue Oct 29 07:00:31 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 07:00:31 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 07:00:31 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 07:00:31 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 07:00:31 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 07:00:31 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 07:00:31 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 07:00:31 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 07:00:31 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 07:00:31 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -mpiifort -o /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cap.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3core.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3io.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libipd.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libgfsphys.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cpl.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libstochastic_physics.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/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' -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_5.exe" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_5.exe -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_5 BUILD_ENV=hera.intel FV3_MAKEOPT=REPRO=Y NEMS_BUILDOPT=REPRO=Y clean -Will copy modules.nems and NEMS.x as fv3_5 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake REPRO=Y -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -+ elapsed=561 -+ echo 'Elapsed time 561 seconds. Compiling REPRO=Y finished' -Elapsed time 561 seconds. Compiling REPRO=Y finished -+ SECONDS=0 -+ [[ 3 -lt 2 ]] -+ readonly PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ readonly APP=standaloneFV3_repro -+ APP=standaloneFV3_repro -+ readonly BUILD_NAME=fv3_6 -+ BUILD_NAME=fv3_6 -+ hostname -hfe06 -+ echo 'Compiling app standaloneFV3_repro into fv3_6.exe' -Compiling app standaloneFV3_repro into fv3_6.exe -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/.. -+ rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS/exe/NEMS.x -+ rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS/src/conf/modules.nems -+ set +e -+ ./NEMS/NEMSAppBuilder app=standaloneFV3_repro -ls: cannot access ../conf/component_*.mk: No such file or directory -NEMSAppBuilder: make app=standaloneFV3_repro distclean -Convert /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/standaloneFV3_repro.appBuilder -...into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/standaloneFV3_repro.appBuilder.mk -Include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/standaloneFV3_repro.appBuilder.mk -echo 'FMS FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec make REPRO=Y -f makefile.temp.clean clean -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec make \ - -k cleanall FMS_DIR=/dev/null -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; make "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test_results.mk -NEMSAppBuilder: make app=standaloneFV3_repro build -Convert /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/standaloneFV3_repro.appBuilder -...into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/standaloneFV3_repro.appBuilder.mk -Include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/standaloneFV3_repro.appBuilder.mk -echo 'FMS FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/conf/configure.fv3.hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/modulefiles/hera.intel/fv3 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh" -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/configure_rules.mk:3: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk: No such file or directory -make -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" TEST -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=12000000 ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ; \ -) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ -exec make REPRO=Y all - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -Building dependencies ... -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_domains.F90 -o ../mpp/mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mpp/affinity.c -o ../mpp/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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mpp/threadloc.c -o ../mpp/threadloc.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL" -mv fms.mk "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL"/. -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -Compiling REPRO=Y into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL on hera -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/configure.fv3 -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/modules.fv3 -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; \ - exec make COMP=FV3 COMP_SRCDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 COMP_BINDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL REPRO=Y nemsinstall - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Building dependencies ... -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -make -C cpl FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -make -C gfsphysics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -a - physics/co2hc.o -a - physics/date_def.o -a - physics/dcyc2.o -a - physics/dcyc2.pre.rad.o -a - physics/efield.o -a - physics/get_prs.o -a - physics/gocart_tracer_config_stub.o -a - physics/gscond.o -a - physics/gscondp.o -a - physics/gwdc.o -a - physics/gwdps.o -a - physics/ugwp_driver_v0.o -a - physics/cires_orowam2017.o -a - physics/h2o_def.o -a - physics/h2oc.o -a - physics/h2ohdc.o -a - physics/h2ophys.o -a - physics/ideaca.o -a - physics/idea_co2.o -a - physics/idea_composition.o -a - physics/idea_dissipation.o -a - physics/idea_h2o.o -a - physics/idea_ion.o -a - physics/idea_o2_o3.o -a - physics/idea_phys.o -a - physics/idea_solar_heating.o -a - physics/idea_tracer.o -a - physics/iounitdef.o -a - physics/lrgsclr.o -a - physics/mersenne_twister.o -a - physics/mfpbl.o -a - physics/mfpblt.o -a - physics/mfpbltq.o -a - physics/mfscu.o -a - physics/mfscuq.o -a - physics/module_bfmicrophysics.o -a - physics/moninedmf.o -a - physics/moninedmf_hafs.o -a - physics/moninp.o -a - physics/moninp1.o -a - physics/moninq.o -a - physics/moninq1.o -a - physics/moninshoc.o -a - physics/mstadb.o -a - physics/mstadbtn.o -a - physics/mstadbtn2.o -a - physics/mstcnv.o -a - physics/namelist_soilveg.o -a - physics/ozne_def.o -a - physics/iccn_def.o -a - physics/aerclm_def.o -a - physics/ozphys.o -a - physics/ozphys_2015.o -a - physics/physparam.o -a - physics/precpd.o -a - physics/precpd_shoc.o -a - physics/precpdp.o -a - physics/progt2.o -a - physics/progtm_module.o -a - physics/rad_initialize.o -a - physics/radiation_aerosols.o -a - physics/radiation_astronomy.o -a - physics/radiation_clouds.o -a - physics/radiation_gases.o -a - physics/radiation_surface.o -a - physics/radlw_datatb.o -a - physics/radlw_main.o -a - physics/radlw_param.o -a - physics/radsw_datatb.o -a - physics/radsw_main.o -a - physics/radsw_param.o -a - physics/rascnvv2.o -a - physics/rayleigh_damp.o -a - physics/rayleigh_damp_mesopause.o -a - physics/samfaerosols.o -a - physics/samfdeepcnv.o -a - physics/samfshalcnv.o -a - physics/sascnv.o -a - physics/sascnvn.o -a - physics/satmedmfvdif.o -a - physics/satmedmfvdifq.o -a - physics/set_soilveg.o -a - physics/sfc_cice.o -a - physics/sfc_diag.o -a - physics/sfc_diff.o -a - physics/sfc_drv.o -a - physics/sfc_noahmp_drv.o -a - physics/sfc_nst.o -a - physics/sfc_ocean.o -a - physics/sfc_sice.o -a - physics/sflx.o -a - physics/shalcnv.o -a - physics/shalcv.o -a - physics/shalcv_1lyr.o -a - physics/shalcv_fixdp.o -a - physics/shalcv_opr.o -a - physics/tracer_const_h.o -a - physics/tridi2t3.o -a - physics/calpreciptype.o -a - physics/funcphys.o -a - physics/gcm_shoc.o -a - physics/get_prs_fv3.o -a - physics/h2ointerp.o -a - physics/module_nst_model.o -a - physics/module_nst_parameters.o -a - physics/module_nst_water_prop.o -a - physics/ozinterp.o -a - physics/module_wrf_utl.o -a - physics/noahmp_tables.o -a - physics/module_sf_noahmplsm.o -a - physics/module_sf_noahmp_glacier.o -a - physics/iccninterp.o -a - physics/aerinterp.o -a - physics/wam_f107_kp_mod.o -a - physics/aer_cloud.o -a - physics/cldmacro.o -a - physics/cldwat2m_micro.o -a - physics/gfs_phy_tracer_config.o -a - physics/machine.o -a - physics/num_parthds.o -a - physics/sfcsub.o -a - physics/wv_saturation.o -a - physics/GFDL_parse_tracers.o -a - physics/gcycle.o -a - physics/cires_ugwp_initialize.o -a - physics/cires_ugwp_module.o -a - physics/cires_ugwp_utils.o -a - physics/cires_ugwp_triggers.o -a - physics/cires_ugwp_solvers.o -a - physics/cires_vert_lsatdis.o -a - physics/cires_vert_orodis.o -a - physics/cires_vert_wmsdis.o -a - physics/gfdl_cloud_microphys.o -a - physics/micro_mg_utils.o -a - physics/micro_mg2_0.o -a - physics/micro_mg3_0.o -a - physics/m_micro_driver.o -a - physics/cs_conv.o -a - physics/GFS_debug.o -a - physics/module_mp_radar.o -a - physics/module_mp_thompson_gfs.o -a - physics/module_mp_wsm6_fv3.o -a - physics/physcons.o -a - physics/surface_perturbation.o -a - GFS_layer/GFS_abstraction_layer.o -a - GFS_layer/GFS_diagnostics.o -a - GFS_layer/GFS_driver.o -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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -make -C ipd FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -make -C io FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.0_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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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_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_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -make -C atmos_cubed_sphere FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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_cmp.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_cmp.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 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -make -C ../stochastic_physics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -make libfv3cap.a FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -make esmf_make_fragment FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Installation into "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL" complete! - -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC" -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; \ -make nems \ - COMPONENTS="FMS FV3" \ - FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL FV3_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" ; \ -test -x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -Components in linker order: FV3 FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" -CPPFLAGS += ESMF_VERSION_REVISION="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_MAJOR="8" -CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -cd ENS_Cpl && make stub -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dom.Heinzeller) Tue Oct 29 08:16:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 08:16:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 08:16:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 08:16:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 08:16:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 08:16:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 08:16:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 08:16:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 08:16:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 08:16:41 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -mpiifort -o /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cap.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3core.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3io.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libipd.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libgfsphys.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cpl.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libstochastic_physics.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/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' -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x is created. -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -+ RC=0 -+ set -e -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/.. -+ [[ 0 -ne 0 ]] -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../tests/fv3_6.exe -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../tests/modules.fv3_6 -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS/src -+ gmake clean -Components in linker order: -rm -f -f *.tmp.f90 *.lst *.o *.mod lm map -cd ENS_Cpl ; gmake clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ gmake cleanall -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -makefile:67: depend: No such file or directory -Building dependencies ... -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -+ rm -rf FV3_INSTALL -+ rm -rf nems_dir -+ elapsed=955 -+ echo 'Elapsed time 955 seconds. Compiling app standaloneFV3_repro finished' -Elapsed time 955 seconds. Compiling app standaloneFV3_repro finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ readonly BUILD_TARGET=hera.intel -+ BUILD_TARGET=hera.intel -+ readonly 'MAKE_OPT=REPRO=Y 32BIT=Y' -+ MAKE_OPT='REPRO=Y 32BIT=Y' -+ readonly BUILD_NAME=fv3_7 -+ BUILD_NAME=fv3_7 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -hfe06 -+ 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 -+ 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ REPRO=Y 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ [[ REPRO=Y 32BIT=Y == *\W\W\3\=\Y* ]] -+ [[ REPRO=Y 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ NEMS_BUILDOPT=REPRO=Y -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_7 BUILD_ENV=hera.intel 'FV3_MAKEOPT=REPRO=Y 32BIT=Y' NEMS_BUILDOPT=REPRO=Y distclean -Will copy modules.nems and NEMS.x as fv3_7 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake REPRO=Y 32BIT=Y -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test_results.mk -+ gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_7 BUILD_ENV=hera.intel 'FV3_MAKEOPT=REPRO=Y 32BIT=Y' NEMS_BUILDOPT=REPRO=Y build -Will copy modules.nems and NEMS.x as fv3_7 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/modulefiles/hera.intel/fv3 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_7" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_7 -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/conf/configure.fv3.hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh" -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/configure_rules.mk:3: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=12000000 ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ; \ -) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ -exec gmake REPRO=Y 32BIT=Y all - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../memutils/memuse.c -o ../memutils/memuse.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mpp/affinity.c -o ../mpp/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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -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 -DREPRO -DOPENMP -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_domains.F90 -o ../mpp/mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL" -mv fms.mk "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -Compiling REPRO=Y 32BIT=Y into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL on hera -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/configure.fv3 -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/modules.fv3 -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 COMP_BINDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL REPRO=Y 32BIT=Y nemsinstall - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake -C cpl FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -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/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -a - physics/co2hc.o -a - physics/date_def.o -a - physics/dcyc2.o -a - physics/dcyc2.pre.rad.o -a - physics/efield.o -a - physics/get_prs.o -a - physics/gocart_tracer_config_stub.o -a - physics/gscond.o -a - physics/gscondp.o -a - physics/gwdc.o -a - physics/gwdps.o -a - physics/ugwp_driver_v0.o -a - physics/cires_orowam2017.o -a - physics/h2o_def.o -a - physics/h2oc.o -a - physics/h2ohdc.o -a - physics/h2ophys.o -a - physics/ideaca.o -a - physics/idea_co2.o -a - physics/idea_composition.o -a - physics/idea_dissipation.o -a - physics/idea_h2o.o -a - physics/idea_ion.o -a - physics/idea_o2_o3.o -a - physics/idea_phys.o -a - physics/idea_solar_heating.o -a - physics/idea_tracer.o -a - physics/iounitdef.o -a - physics/lrgsclr.o -a - physics/mersenne_twister.o -a - physics/mfpbl.o -a - physics/mfpblt.o -a - physics/mfpbltq.o -a - physics/mfscu.o -a - physics/mfscuq.o -a - physics/module_bfmicrophysics.o -a - physics/moninedmf.o -a - physics/moninedmf_hafs.o -a - physics/moninp.o -a - physics/moninp1.o -a - physics/moninq.o -a - physics/moninq1.o -a - physics/moninshoc.o -a - physics/mstadb.o -a - physics/mstadbtn.o -a - physics/mstadbtn2.o -a - physics/mstcnv.o -a - physics/namelist_soilveg.o -a - physics/ozne_def.o -a - physics/iccn_def.o -a - physics/aerclm_def.o -a - physics/ozphys.o -a - physics/ozphys_2015.o -a - physics/physparam.o -a - physics/precpd.o -a - physics/precpd_shoc.o -a - physics/precpdp.o -a - physics/progt2.o -a - physics/progtm_module.o -a - physics/rad_initialize.o -a - physics/radiation_aerosols.o -a - physics/radiation_astronomy.o -a - physics/radiation_clouds.o -a - physics/radiation_gases.o -a - physics/radiation_surface.o -a - physics/radlw_datatb.o -a - physics/radlw_main.o -a - physics/radlw_param.o -a - physics/radsw_datatb.o -a - physics/radsw_main.o -a - physics/radsw_param.o -a - physics/rascnvv2.o -a - physics/rayleigh_damp.o -a - physics/rayleigh_damp_mesopause.o -a - physics/samfaerosols.o -a - physics/samfdeepcnv.o -a - physics/samfshalcnv.o -a - physics/sascnv.o -a - physics/sascnvn.o -a - physics/satmedmfvdif.o -a - physics/satmedmfvdifq.o -a - physics/set_soilveg.o -a - physics/sfc_cice.o -a - physics/sfc_diag.o -a - physics/sfc_diff.o -a - physics/sfc_drv.o -a - physics/sfc_noahmp_drv.o -a - physics/sfc_nst.o -a - physics/sfc_ocean.o -a - physics/sfc_sice.o -a - physics/sflx.o -a - physics/shalcnv.o -a - physics/shalcv.o -a - physics/shalcv_1lyr.o -a - physics/shalcv_fixdp.o -a - physics/shalcv_opr.o -a - physics/tracer_const_h.o -a - physics/tridi2t3.o -a - physics/calpreciptype.o -a - physics/funcphys.o -a - physics/gcm_shoc.o -a - physics/get_prs_fv3.o -a - physics/h2ointerp.o -a - physics/module_nst_model.o -a - physics/module_nst_parameters.o -a - physics/module_nst_water_prop.o -a - physics/ozinterp.o -a - physics/module_wrf_utl.o -a - physics/noahmp_tables.o -a - physics/module_sf_noahmplsm.o -a - physics/module_sf_noahmp_glacier.o -a - physics/iccninterp.o -a - physics/aerinterp.o -a - physics/wam_f107_kp_mod.o -a - physics/aer_cloud.o -a - physics/cldmacro.o -a - physics/cldwat2m_micro.o -a - physics/gfs_phy_tracer_config.o -a - physics/machine.o -a - physics/num_parthds.o -a - physics/sfcsub.o -a - physics/wv_saturation.o -a - physics/GFDL_parse_tracers.o -a - physics/gcycle.o -a - physics/cires_ugwp_initialize.o -a - physics/cires_ugwp_module.o -a - physics/cires_ugwp_utils.o -a - physics/cires_ugwp_triggers.o -a - physics/cires_ugwp_solvers.o -a - physics/cires_vert_lsatdis.o -a - physics/cires_vert_orodis.o -a - physics/cires_vert_wmsdis.o -a - physics/gfdl_cloud_microphys.o -a - physics/micro_mg_utils.o -a - physics/micro_mg2_0.o -a - physics/micro_mg3_0.o -a - physics/m_micro_driver.o -a - physics/cs_conv.o -a - physics/GFS_debug.o -a - physics/module_mp_radar.o -a - physics/module_mp_thompson_gfs.o -a - physics/module_mp_wsm6_fv3.o -a - physics/physcons.o -a - physics/surface_perturbation.o -a - GFS_layer/GFS_abstraction_layer.o -a - GFS_layer/GFS_diagnostics.o -a - GFS_layer/GFS_driver.o -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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -gmake -C ipd FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -makefile:54: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -gmake -C io FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.0_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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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_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_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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_cmp.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_cmp.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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake esmf_make_fragment FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Installation into "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC" -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; \ -gmake nems REPRO=Y \ - COMPONENTS="FMS FV3" \ - FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL FV3_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" ; \ -test -x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -Components in linker order: FV3 FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" -CPPFLAGS += ESMF_VERSION_REVISION="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_MAJOR="8" -CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dom.Heinzeller) Tue Oct 29 08:31:34 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 08:31:34 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 08:31:34 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 08:31:34 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 08:31:34 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 08:31:34 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 08:31:34 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 08:31:34 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 08:31:34 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 08:31:34 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -mpiifort -o /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cap.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3core.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3io.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libipd.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libgfsphys.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cpl.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libstochastic_physics.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/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' -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_7.exe" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_7.exe -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3_7 BUILD_ENV=hera.intel 'FV3_MAKEOPT=REPRO=Y 32BIT=Y' NEMS_BUILDOPT=REPRO=Y clean -Will copy modules.nems and NEMS.x as fv3_7 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake REPRO=Y 32BIT=Y -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -+ elapsed=551 -+ echo 'Elapsed time 551 seconds. Compiling REPRO=Y 32BIT=Y finished' -Elapsed time 551 seconds. Compiling REPRO=Y 32BIT=Y finished -+ SECONDS=0 -+ [[ 4 -lt 2 ]] -+ readonly PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ readonly BUILD_TARGET=hera.intel -+ BUILD_TARGET=hera.intel -+ readonly 'MAKE_OPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017' -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017' -+ readonly BUILD_NAME=fv3_8 -+ BUILD_NAME=fv3_8 -+ readonly clean_before=YES -+ clean_before=YES -+ readonly clean_after=YES -+ clean_after=YES -+ hostname -hfe06 -+ 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 -+ 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS -+ COMPONENTS=FMS,FV3 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\C\C\P\P\=\Y* ]] -+ COMPONENTS=CCPP,FMS,FV3 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\W\W\3\=\Y* ]] -+ [[ 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 == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\R\E\P\R\O\=\Y* ]] -+ NEMS_BUILDOPT=REPRO=Y -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_8 BUILD_ENV=hera.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017' NEMS_BUILDOPT=REPRO=Y distclean -Will copy modules.nems and NEMS.x as fv3_8 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017 --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include" ; \ -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --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 formet -INFO: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include -GNUmakefile:70: : component CCPP makefile fragment is missing -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test_results.mk -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_8 BUILD_ENV=hera.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017' NEMS_BUILDOPT=REPRO=Y build -Will copy modules.nems and NEMS.x as fv3_8 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/modulefiles/hera.intel/fv3 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_8" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/modules.fv3_8 -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/conf/configure.fv3.hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh" -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/configure_rules.mk:3: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=12000000 ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ; \ -) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ -exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" all - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL" -mv fms.mk "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017 ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh hera.intel "$PATH_CCPP" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk \ - "REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"" NO NO ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/include ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --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 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 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 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 slc of variable volume_fraction_of_unfrozen_soil_moisture 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 phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top 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 sec of variable seconds_elapsed_since_model_initialization 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 kbot of variable vertical_index_at_cloud_base 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 stc of variable soil_temperature 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 xlaixy of variable leaf_area_index 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 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 phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back 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 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 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 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 v10m of variable y_wind_at_10m 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 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 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 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 nmtvr of variable number_of_statistical_measures_of_subgrid_orography 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 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 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 ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial 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 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 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 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 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 levs of variable vertical_dimension 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 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 w_0 of variable coefficient_w_0 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 pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter 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 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 phy_myj_chkqlm of variable surface_layer_evaporation_switch 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 sdec of variable sine_of_solar_declination_angle 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 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 dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep 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 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 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 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 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 sinlat of variable sine_of_latitude 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 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 do_sfcperts of variable flag_for_stochastic_surface_perturbations 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 tsfc_ice of variable surface_skin_temperature_over_ice_interstitial 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 debug of variable flag_debug 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 u1 of variable x_wind_at_lowest_model_layer_for_diag 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 do_myjsfc of variable do_myjsfc 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 gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics 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 slopetype of variable surface_slope_classification 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 levh2o of variable vertical_dimension_of_h2o_forcing_data 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 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 save_q of variable tracer_concentration_save 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 cf_upi of variable convective_cloud_fraction_for_microphysics 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial 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 dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL 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 tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave 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 forcet of variable temperature_tendency_due_to_dynamics 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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 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 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 ntchmdiag of variable number_of_chemical_tracers_for_diagnostics 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 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 dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column 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 islmsk_cice of variable sea_land_ice_mask_cice 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 pgr of variable surface_air_pressure 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 nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling 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 nscav of variable number_of_tracers_scavenged 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 zorl_ice of variable surface_roughness_length_over_ice_interstitial 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 aero_in of variable flag_for_aerosol_input_MG 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 avg_max_length of variable time_interval_for_maximum_hourly_fields 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 kind_LOGICAL of variable kind_LOGICAL 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial 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 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 mdt of variable time_step_for_remapping_for_fast_physics 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 sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model 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 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 runoff of variable total_runoff 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 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 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 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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial 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 nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation 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 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 qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio 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 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 oceanfrac of variable sea_area_fraction 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 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 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 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 ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land 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 phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back 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 con_t0c of variable temperature_at_zero_celsius 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 dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling 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 shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term 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 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 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 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 mom4ice of variable flag_for_mom4_coupling 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 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 tsfcl of variable surface_skin_temperature_over_land 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ozphys -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 ozphys_2015 -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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme noahmpdrv -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 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 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_noahmp_pre -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 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 mp_thompson_post -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 gwdps_post -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 lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme mynnrad_post -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 lsm_noah -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme dcyc2t3_post -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -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 cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -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 conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep -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 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 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 explicit_rainfall_rate_from_previous_timestep -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_aerosol_input_MG -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_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_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_shoc_after_convection -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 graupel_precipitation_rate_from_previous_timestep -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_precipitation_rate_from_previous_timestep -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 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 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 namelist_filename_for_internal_file_reads -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_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_precipitation_rate_from_previous_timestep -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_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 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_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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 162 schemes to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.mk, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 5 auto-generated caps to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.mk and /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ ./build_ccpp.sh hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk 'REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/lib from /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -DNETCDF_DIR=/apps/netcdf/4.7.0/intel/18.0.5.274 -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DOPENMP=ON -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 18.0.0.20180823 --- The CXX compiler identification is Intel 18.0.0.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 --- 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 --- The Fortran compiler identification is Intel --- 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 LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") --- 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 SCHEMES from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 --- Configuring done --- Generating done --- Build files have been written to: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 5 -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 3 -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 7 -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 6 -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 4 -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 -[ 6%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields_idx.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_utils.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 2 -[ 8%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.c -Linking Fortran static library libccpp.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar cr libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 8 -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 8%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -Linking Fortran executable test_check -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_check.dir/test_check.f90.o -o test_check -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 8%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 9%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/test_fields.dir/test_fields.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_fields.c -Linking C executable test_fields -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -O2 -fPIC -qopenmp -qopenmp CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 10%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -Linking Fortran executable test_init_finalize -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 10%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 38 -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 48 -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 18 -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 42 -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 51 -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 15 -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 16 -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 19 -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 24 -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 23 -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 29 -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 37 -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 17 -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 46 -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 34 -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 49 -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 43 -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 22 -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 95 -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 40 -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 41 -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 39 -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 68 -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 53 -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 44 -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 10 -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 28 -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 36 -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 27 -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 12 -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 25 -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 9 -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 11 -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 20 -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 47 -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 84 -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 26 -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 50 -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 74 -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 94 -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 85 -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 91 -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 80 -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 81 -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 82 -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 78 -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 93 -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 61 -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 52 -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 60 -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 64 -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 65 -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 75 -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 97 -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 59 -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 72 -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 58 -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 92 -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 56 -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 96 -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 70 -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 62 -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 67 -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 73 -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 89 -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 79 -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 55 -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 54 -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 71 -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 77 -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 66 -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 87 -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 86 -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 90 -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 69 -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 83 -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 21 -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 63 -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 88 -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 76 -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 57 -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 13 -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 14 -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 30 -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 31 -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 32 -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 33 -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 35 -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 45 -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -Linking Fortran static library libccppphys.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccppphys.dir/link.txt --verbose=1 -/usr/bin/ar cr 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_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/mfscu.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/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 8 -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 8%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 10%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[2]: Nothing to be done for `preinstall'. -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Bitforbit" --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccpp.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config-bitforbit.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_utils.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_errors.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_strings.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_suite.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_types.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_api.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccppphys.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config-bitforbit.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_stochastics_cap.mod -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL on hera -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/configure.fv3 -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/modules.fv3 -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 COMP_BINDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Building dependencies ... -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake -C cpl FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' - -Build standalone FV3 io ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_typedefs.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -gmake -C ccpp/driver FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -makefile:67: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -gmake -C ipd FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -makefile:54: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -gmake -C io FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.0_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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_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_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -Building dependencies ... -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -gmake esmf_make_fragment FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Installation into "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL" complete! - -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC" -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; \ -gmake nems REPRO=Y \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL CCPP_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp FV3_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" ; \ -test -x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" -CPPFLAGS += ESMF_VERSION_REVISION="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_MAJOR="8" -CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -cd ENS_Cpl && gmake stub -gmake[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dom.Heinzeller) Tue Oct 29 09:59:23 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 09:59:23 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 09:59:23 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 09:59:23 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 09:59:23 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 09:59:23 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 09:59:23 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 09:59:23 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 09:59:23 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 09:59:23 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -mpiifort -o /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cap.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libccppdriver.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3core.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3io.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libipd.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libgfsphys.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cpl.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libstochastic_physics.a -L/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/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' -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -set -xe ; cp "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_8.exe" -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/tests/fv3_8.exe -+ '[' YES = YES ']' -+ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_8 BUILD_ENV=hera.intel 'FV3_MAKEOPT=REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017' NEMS_BUILDOPT=REPRO=Y clean -Will copy modules.nems and NEMS.x as fv3_8 under tests/ -NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec gmake REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec gmake \ - -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -+ elapsed=861 -+ echo 'Elapsed time 861 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 finished' -Elapsed time 861 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 finished -+ SECONDS=0 -+ [[ 3 -lt 2 ]] -+ readonly PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ readonly APP=CCPP_repro -+ APP=CCPP_repro -+ readonly BUILD_NAME=fv3_9 -+ BUILD_NAME=fv3_9 -+ hostname -hfe06 -+ echo 'Compiling app CCPP_repro into fv3_9.exe' -Compiling app CCPP_repro into fv3_9.exe -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/.. -+ rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS/exe/NEMS.x -+ rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS/src/conf/modules.nems -+ set +e -+ ./NEMS/NEMSAppBuilder app=CCPP_repro -ls: cannot access ../conf/component_*.mk: No such file or directory -NEMSAppBuilder: make app=CCPP_repro distclean -Convert /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/CCPP_repro.appBuilder -...into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/CCPP_repro.appBuilder.mk -Include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/CCPP_repro.appBuilder.mk -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cat /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ - exec make REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" -f makefile.temp.clean clean -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs/makefile.temp.clean -set -x ; \ -cd "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build" -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017 --clean ; \ -cd $PATH_CCPP ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib" ; \ -rm -rf "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include" ; \ -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --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 formet -INFO: Performing clean .... -INFO: CCPP prebuild clean completed successfully, exiting. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -+ rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; exec make \ - -k cleanall FMS_DIR=/dev/null -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -rm -rf nems_dir FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/configure.fv3 \ - /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/conf/modules.fv3 -rm -rf /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -if ! test -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ - delete_nuopc=yes ; \ -fi ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; make "COMPONENTS=FMS CCPP FV3" \ - INCLUDES_ARE_OPTIONAL=YES clean ; \ -if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC ; \ -fi -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk -rm -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test_results.mk -NEMSAppBuilder: make app=CCPP_repro build -Convert /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/CCPP_repro.appBuilder -...into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/CCPP_repro.appBuilder.mk -Include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/CCPP_repro.appBuilder.mk -echo 'FMS CCPP FV3' > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/components.mk" -Adding FV3 makeopts to FMS makeopts -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/conf/configure.fv3.hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems -cat /dev/null > /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/externals.nems -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/modulefiles/hera.intel/fv3 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems -cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems.csh" -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/configure_rules.mk:3: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk: No such file or directory -make -f /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" TEST -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -if [ -f "/modules.nems" ] ; then \ - . /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=12000000 ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ; \ -) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/test-results.mk" -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS' -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs ; \ -exec make REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" all - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -Building dependencies ... -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -Compiling in MPI mode (with or without MPP) -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/test_xgrid.F90 -o ../exchange/test_xgrid.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/test_fms_io.F90 -o ../fms/test_fms_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/test_horiz_interp.F90 -o ../horiz_interp/test_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp.F90 -o ../mpp/test_mpp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_domains.F90 -o ../mpp/test_mpp_domains.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_io.F90 -o ../mpp/test_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/test_mpp_pset.F90 -o ../mpp/test_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../mpp/affinity.c -o ../mpp/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -c ../mpp/threadloc.c -o ../mpp/threadloc.o -ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.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/test_xgrid.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 ../fms/test_fms_io.o ../constants/constants.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 ../horiz_interp/test_horiz_interp.o ../interpolator/interpolator.o ../memutils/memutils.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 ../mpp/test_mpp.o ../mpp/test_mpp_domains.o ../mpp/test_mpp_io.o ../mpp/test_mpp_pset.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 ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/affinity.o ../mpp/nsclock.o ../mpp/threadloc.o -ar: creating libfms.a -a - ../oda_tools/xbt_drop_rate_adjust.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 - ../coupler/atmos_ocean_fluxes.o -a - ../coupler/coupler_types.o -a - ../coupler/ensemble_manager.o -a - ../data_override/data_override.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/test_xgrid.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 - ../fms/test_fms_io.o -a - ../constants/constants.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 - ../horiz_interp/test_horiz_interp.o -a - ../interpolator/interpolator.o -a - ../memutils/memutils.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 - ../mpp/test_mpp.o -a - ../mpp/test_mpp_domains.o -a - ../mpp/test_mpp_io.o -a - ../mpp/test_mpp_pset.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 - ../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/affinity.o -a - ../mpp/nsclock.o -a - ../mpp/threadloc.o -mkdir -p "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL" -mv fms.mk "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL"/. -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/fv3gfs' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -xue ; \ -export PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 ; \ -$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --suites=FV3_GFS_2017 ; \ -cd $PATH_CCPP ; \ -./build_ccpp.sh hera.intel "$PATH_CCPP" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk \ - "REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"" NO NO ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/include ; \ -test -d "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp"/lib - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -+ export PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029 -+ /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 --static --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 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 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 kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer 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 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 slc of variable volume_fraction_of_unfrozen_soil_moisture 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 phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top 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 sec of variable seconds_elapsed_since_model_initialization 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 kbot of variable vertical_index_at_cloud_base 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 stc of variable soil_temperature 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 xlaixy of variable leaf_area_index 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 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 phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back 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 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 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 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 v10m of variable y_wind_at_10m 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 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 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 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 nmtvr of variable number_of_statistical_measures_of_subgrid_orography 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 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 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 ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling 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 dusfc_cice of variable surface_x_momentum_flux_for_coupling_interstitial 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 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 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 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 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 levs of variable vertical_dimension 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 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 w_0 of variable coefficient_w_0 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 pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter 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 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 phy_myj_chkqlm of variable surface_layer_evaporation_switch 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 sdec of variable sine_of_solar_declination_angle 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 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 dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep 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 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 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 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 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 sinlat of variable sine_of_latitude 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 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 do_sfcperts of variable flag_for_stochastic_surface_perturbations 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 tsfc_ice of variable surface_skin_temperature_over_ice_interstitial 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 debug of variable flag_debug 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 u1 of variable x_wind_at_lowest_model_layer_for_diag 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 do_myjsfc of variable do_myjsfc 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 gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics 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 slopetype of variable surface_slope_classification 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 levh2o of variable vertical_dimension_of_h2o_forcing_data 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 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 save_q of variable tracer_concentration_save 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 cf_upi of variable convective_cloud_fraction_for_microphysics 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 dqsfc_cice of variable surface_upward_latent_heat_flux_for_coupling_interstitial 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 dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL 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 tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave 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 forcet of variable temperature_tendency_due_to_dynamics 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 dtsfc_cice of variable surface_upward_sensible_heat_flux_for_coupling_interstitial 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 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 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 ntchmdiag of variable number_of_chemical_tracers_for_diagnostics 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 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 dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column 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 islmsk_cice of variable sea_land_ice_mask_cice 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 pgr of variable surface_air_pressure 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 nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling 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 nscav of variable number_of_tracers_scavenged 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 zorl_ice of variable surface_roughness_length_over_ice_interstitial 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 aero_in of variable flag_for_aerosol_input_MG 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 avg_max_length of variable time_interval_for_maximum_hourly_fields 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 kind_LOGICAL of variable kind_LOGICAL 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 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 dvsfc_cice of variable surface_y_momentum_flux_for_coupling_interstitial 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 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 mdt of variable time_step_for_remapping_for_fast_physics 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 sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model 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 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 runoff of variable total_runoff 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 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 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 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 ulwsfc_cice of variable surface_upwelling_longwave_flux_for_coupling_interstitial 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 nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation 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 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 qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio 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 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 oceanfrac of variable sea_area_fraction 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 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 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 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 ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land 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 phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back 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 con_t0c of variable temperature_at_zero_celsius 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 dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling 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 shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term 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 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 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 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 mom4ice of variable flag_for_mom4_coupling 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 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 tsfcl of variable surface_skin_temperature_over_land 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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 ozphys -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 ozphys_2015 -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 samfshalcnv -INFO: Parsed tables in scheme samfshalcnv_post -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme noahmpdrv -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 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 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_noahmp_pre -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 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 mp_thompson_post -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 gwdps_post -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 lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite_pre -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme drag_suite_post -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme mynnrad_post -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 lsm_noah -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme dcyc2t3_post -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -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 cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -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 conv_activity_counter -INFO: filtering out variable convective_precipitation_rate_from_previous_timestep -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 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 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 explicit_rainfall_rate_from_previous_timestep -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_aerosol_input_MG -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_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_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_shoc_after_convection -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 graupel_precipitation_rate_from_previous_timestep -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_precipitation_rate_from_previous_timestep -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 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 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 namelist_filename_for_internal_file_reads -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_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_precipitation_rate_from_previous_timestep -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_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 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_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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 162 schemes to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.mk, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 5 auto-generated caps to /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.mk and /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ ./build_ccpp.sh hera.intel /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk 'REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/lib from /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib/esmf.mk -Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -DNETCDF_DIR=/apps/netcdf/4.7.0/intel/18.0.5.274 -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DOPENMP=ON -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... --- The C compiler identification is Intel 18.0.0.20180823 --- The CXX compiler identification is Intel 18.0.0.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 --- 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 --- The Fortran compiler identification is Intel --- 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 LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") --- 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 SCHEMES from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from cmakefile include file: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 --- Configuring done --- Generating done --- Build files have been written to: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". -Scanning dependencies of target ccpp -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_errors.F90 -o CMakeFiles/ccpp.dir/ccpp_errors.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_errors framework/src/CMakeFiles/ccpp.dir/ccpp_errors.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 5 -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_strings.F90 -o CMakeFiles/ccpp.dir/ccpp_strings.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_strings framework/src/CMakeFiles/ccpp.dir/ccpp_strings.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 1%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields.F90 -o CMakeFiles/ccpp.dir/ccpp_fields.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fields framework/src/CMakeFiles/ccpp.dir/ccpp_fields.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 3 -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.F90 -o CMakeFiles/ccpp.dir/ccpp_dl.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_dl framework/src/CMakeFiles/ccpp.dir/ccpp_dl.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 2%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_scheme.F90 -o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_scheme framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 7 -[ 3%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.F90 -o CMakeFiles/ccpp.dir/ccpp_xml.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_xml framework/src/CMakeFiles/ccpp.dir/ccpp_xml.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 6 -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_suite.F90 -o CMakeFiles/ccpp.dir/ccpp_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_suite framework/src/CMakeFiles/ccpp.dir/ccpp_suite.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 4%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp.F90 -o CMakeFiles/ccpp.dir/ccpp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp framework/src/CMakeFiles/ccpp.dir/ccpp.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 4 -[ 5%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fcall.F90 -o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_fcall framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 8 -[ 6%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel -/usr/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 6%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_dl.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_dl.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_dl.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_fields_idx.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 7%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_utils.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_utils.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_utils.c -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 2 -[ 8%] Building C object framework/src/CMakeFiles/ccpp.dir/ccpp_xml.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/ccpp.dir/ccpp_xml.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/ccpp_xml.c -Linking Fortran static library libccpp.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 -/usr/bin/ar cr libccpp.a CMakeFiles/ccpp.dir/ccpp_dl.c.o CMakeFiles/ccpp.dir/ccpp_fields_idx.c.o CMakeFiles/ccpp.dir/ccpp_utils.c.o CMakeFiles/ccpp.dir/ccpp_xml.c.o CMakeFiles/ccpp.dir/ccpp.F90.o CMakeFiles/ccpp.dir/ccpp_dl.F90.o CMakeFiles/ccpp.dir/ccpp_errors.F90.o CMakeFiles/ccpp.dir/ccpp_fcall.F90.o CMakeFiles/ccpp.dir/ccpp_fields.F90.o CMakeFiles/ccpp.dir/ccpp_strings.F90.o CMakeFiles/ccpp.dir/ccpp_scheme.F90.o CMakeFiles/ccpp.dir/ccpp_suite.F90.o CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_xml.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o -/usr/bin/ranlib libccpp.a -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 8 -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/depend.internal". -Scanning dependencies of target test_check -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 8%] Building Fortran object framework/src/tests/CMakeFiles/test_check.dir/test_check.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_check.f90 -o CMakeFiles/test_check.dir/test_check.f90.o -Linking Fortran executable test_check -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_check.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_check.dir/test_check.f90.o -o test_check -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 8%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/depend.internal". -Scanning dependencies of target test_fields -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 9%] Building C object framework/src/tests/CMakeFiles/test_fields.dir/test_fields.c.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -qopenmp -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -o CMakeFiles/test_fields.dir/test_fields.c.o -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_fields.c -Linking C executable test_fields -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_fields.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -O2 -fPIC -qopenmp -qopenmp CMakeFiles/test_fields.dir/test_fields.c.o -o test_fields -rdynamic ../libccpp.a -lxml2 -ldl -lifport -lifcoremt -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/depend.internal". -Scanning dependencies of target test_init_finalize -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 10%] Building Fortran object framework/src/tests/CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics -I/usr/include/libxml2 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests/test_init_finalize.f90 -o CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -Linking Fortran executable test_init_finalize -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests && /usr/bin/cmake -E cmake_link_script CMakeFiles/test_init_finalize.dir/link.txt --verbose=1 -/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE CMakeFiles/test_init_finalize.dir/test_init_finalize.f90.o -o test_init_finalize -shared-intel ../libccpp.a /usr/lib64/libxml2.so -ldl -lirng -ldecimal -lcilkrts -lstdc++ -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 10%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Dependee "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". -Scanning dependencies of target ccppphys -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/machine physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 38 -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physcons physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/funcphys physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 48 -[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 18 -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/physparam physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 42 -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 51 -[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 15 -[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2o_def physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 16 -[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccn_def physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 19 -[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 24 -[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 23 -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 29 -[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 37 -[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozne_def physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 17 -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 46 -[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 34 -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 49 -[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 43 -[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29 physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 22 -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 95 -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 40 -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 41 -[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 39 -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/radcons physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16 physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 68 -[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 53 -[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 44 -[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 10 -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aerinterp physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/iccninterp physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozinterp physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 28 -[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 36 -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 27 -[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 12 -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/date_def physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/nst_module physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 25 -[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 9 -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldmacro physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 11 -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0 physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 20 -[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0 physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 47 -[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 84 -[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdps_post physics/CMakeFiles/ccppphys.dir/gwdps_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 26 -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 50 -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 74 -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cnvc90 physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 94 -[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3 physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3_post physics/CMakeFiles/ccppphys.dir/dcyc2t3_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 85 -[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3 physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3 physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 91 -[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 80 -[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 81 -[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 82 -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4 physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 78 -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2 physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/hedmf physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 93 -[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 61 -[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 52 -[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 60 -[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 64 -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv_post physics/CMakeFiles/ccppphys.dir/samfshalcnv_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 65 -[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 75 -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 97 -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_physics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_physics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 59 -[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 72 -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 58 -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_radiation_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_radiation_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stochastics_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stochastics_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 92 -[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 56 -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 96 -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_time_vary_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_time_vary_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -check nopointers,nobounds -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_cap physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_cap.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 70 -[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 62 -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 67 -[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 73 -[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 89 -[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_post physics/CMakeFiles/ccppphys.dir/drag_suite_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/drag_suite_pre physics/CMakeFiles/ccppphys.dir/drag_suite_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 79 -[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shoc physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 55 -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 54 -[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 71 -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/h2ophys physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 77 -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel -/usr/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 66 -[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 87 -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 86 -[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 90 -[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 69 -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/moninshoc physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 83 -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 21 -[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 63 -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015 physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 88 -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 76 -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_noahmp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_noahmp_pre physics/CMakeFiles/ccppphys.dir/sfc_noahmp_pre.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 57 -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -/usr/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel -/usr/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 13 -[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 14 -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 30 -[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 31 -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 32 -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 33 -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 35 -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 45 -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DSTATIC -DUSE_COND -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src -qopenmp -i4 -real-size 64 -c /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o -Linking Fortran static library libccppphys.a -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics && /usr/bin/cmake -E cmake_link_script CMakeFiles/ccppphys.dir/link.txt --verbose=1 -/usr/bin/ar cr 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_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/mfscu.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/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.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/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.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_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.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/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -H/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -B/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_strings.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fields.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_dl.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_scheme.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_xml.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_suite.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `framework/src/CMakeFiles/ccpp.dir/ccpp_fcall.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/CMakeFiles/ccpp.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 1 2 3 4 5 6 7 8 -[ 8%] Built target ccpp -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_check.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_check.dir/build.make framework/src/tests/CMakeFiles/test_check.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_check.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles -[ 8%] Built target test_check -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_fields.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_fields.dir/build.make framework/src/tests/CMakeFiles/test_fields.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_fields.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 99 -[ 9%] Built target test_fields -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/framework/src/tests/CMakeFiles/test_init_finalize.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/requires'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f framework/src/tests/CMakeFiles/test_init_finalize.dir/build.make framework/src/tests/CMakeFiles/test_init_finalize.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `framework/src/tests/CMakeFiles/test_init_finalize.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 100 -[ 10%] Built target test_init_finalize -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/requires -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build -make[4]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[4]: `physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build' is up to date. -make[4]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build -make[3]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[3]: Nothing to be done for `physics/CMakeFiles/ccppphys.dir/build'. -make[3]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_report /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 -[100%] Built target ccppphys -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -/usr/bin/cmake -E cmake_progress_start /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -make[2]: Nothing to be done for `preinstall'. -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "Bitforbit" --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccpp.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccpp-config-bitforbit.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_utils.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields_idx.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.h --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_dl.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_errors.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fcall.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fields.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_strings.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_scheme.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_suite.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_types.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_xml.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_api.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/libccppphys.a --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib/cmake/ccppphys-config-bitforbit.cmake --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_time_vary_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_radiation_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_physics_cap.mod --- Installing: /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include/ccpp_fv3_gfs_2017_stochastics_cap.mod -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/build' -REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -+ test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" into /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL on hera -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/configure.fv3 -cp -fp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/modules.nems \ - "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3"/conf/modules.fv3 -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 ; \ - exec make COMP=FV3 COMP_SRCDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 COMP_BINDIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp" nemsinstall - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Building dependencies ... -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -make -C cpl FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' - -Build standalone FV3 io ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -make -C gfsphysics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N DYN32=N # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -makefile:278: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_typedefs.F90 -o CCPP_layer/CCPP_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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/radlw_param.o physics/radsw_param.o physics/set_soilveg.o physics/noahmp_tables.o physics/machine.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_typedefs.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 GFS_layer/GFS_typedefs.o -ar: creating libgfsphys.a -a - physics/mersenne_twister.o -a - physics/namelist_soilveg.o -a - physics/physparam.o -a - physics/radlw_param.o -a - physics/radsw_param.o -a - physics/set_soilveg.o -a - physics/noahmp_tables.o -a - physics/machine.o -a - physics/GFDL_parse_tracers.o -a - physics/physcons.o -a - CCPP_layer/CCPP_typedefs.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 -a - GFS_layer/GFS_typedefs.o -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -make -C ccpp/driver FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N DYN32=N # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -makefile:67: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' - -Build CCPP layer ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC CCPP_driver.F90 > CCPP_driver.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -make -C ipd FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -makefile:54: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' - -Build standalone FV3 gfsphysics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -make -C io FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include] -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.0_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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_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_fv3_io_def.o -a - module_write_internal_state.o -a - module_wrt_grid_comp.o -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -make -C atmos_cubed_sphere FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' - -Build standalone FV3 fv3core ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -Converting pointers to allocatable components -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o -Using 8-byte addressing -Using PURE -Converting pointers to allocatable components -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 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -make -C ../stochastic_physics FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -makefile:86: depend: No such file or directory -Building dependencies ... -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' - -Build standalone FV3 stochastic_physics ... - -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I./include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -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 - num_parthds_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 - cellular_automata.o -a - update_ca.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 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -make libfv3cap.a FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -DREPRO -DOPENMP -DCCPP -DSTATIC -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -qno-opt-dynamic-align -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -qopenmp -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -make esmf_make_fragment FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -# additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/nems_dir" >> fv3.mk - -Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk - -make[2]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -Installation into "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL" complete! - -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3' -test -d /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -( \ -echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/configure.nems.NUOPC" -. /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ -set -e ; \ -for m in /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; do \ - test -s $m ; \ -done ; \ -echo build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk ; \ -cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src ; \ -make nems \ - COMPONENTS="FMS CCPP FV3" \ - FMS_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL CCPP_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp FV3_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL TARGET="/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x" ; \ -test -x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x - -Currently Loaded Modules: - 1) contrib 6) bacio/2.0.3 11) w3nco/2.0.7 16) png/1.2.44 - 2) sutils/default 7) ip/3.0.2 12) g2/3.1.1 17) z/1.2.11 - 3) intel/18.0.5.274 8) nemsio/2.2.4 13) g2tmpl/1.5.1 18) post/8.0.0 - 4) impi/2018.0.4 9) sp/2.0.3 14) crtm/2.2.6 19) esmf/8.0.0 - 5) netcdf/4.7.0 10) w3emc/2.3.1 15) jasper/1.900.1 20) modules.nems - - - -build NEMS after /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -Components in linker order: FV3 CCPP FMS -FV3: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/fv3.mk -CCPP: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/ccpp.mk -FMS: include /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FMS/FMS_INSTALL/fms.mk -CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" -CPPFLAGS += ESMF_VERSION_REVISION="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_MAJOR="8" -CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -cd ENS_Cpl && make stub -make[2]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/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 `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dom.Heinzeller) Tue Oct 29 11:42:16 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 11:42:16 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 11:42:16 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 11:42:16 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 11:42:16 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 11:42:16 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 11:42:16 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 11:42:16 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 11:42:16 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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="(Dom.Heinzeller) Tue Oct 29 11:42:16 UTC 2019 rcb1f16da16da https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2019' -D'CMP_JD=302' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/apps/netcdf/4.7.0/intel/18.0.5.274/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-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.6.1/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/include -I/apps/netcdf/4.6.1/intel/16.1.150/include -IENS_Cpl -I. -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/fms -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../stochastic_physics -I-I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/include -I/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/lib -lnetcdff -lnetcdf -mpiifort -o /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cap.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libccppdriver.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3core.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3io.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libipd.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libgfsphys.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libfv3cpl.a /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/FV3_INSTALL/libstochastic_physics.a -L/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/lib -lccpp -lccppphys -lxml2 /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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.0_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.5.1.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.6.1/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.6.1/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/apps/netcdf/4.7.0/intel/18.0.5.274/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' -/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/exe/NEMS.x is created. -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src' -+ RC=0 -+ set -e -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/.. -+ [[ 0 -ne 0 ]] -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS/exe/NEMS.x /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../tests/fv3_9.exe -+ cp /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS/src/conf/modules.nems /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../tests/modules.fv3_9 -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/../NEMS/src -+ gmake clean -Components in linker order: -rm -f -f *.tmp.f90 *.lst *.o *.mod lm map -cd ENS_Cpl ; gmake clean -gmake[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/NEMS/src/ENS_Cpl' -+ cd /scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3 -+ gmake cleanall -Cleaning ... - -(cd gfsphysics && make clean) - -Build standalone FV3 gfsphysics ... - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -Cleaning gfsphysics ... - -rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/gfsphysics' -(cd ccpp/driver && make clean) - -Build CCPP layer ... - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -Cleaning CCPP_layer ... - -rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ccpp/driver' -(cd ipd && make clean) - -Build standalone FV3 gfsphysics ... - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -Cleaning ipd ... - -rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/ipd' -(cd ../stochastic_physics && make clean) - -Build standalone FV3 stochastic_physics ... - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -Cleaning stochastic_physics ... - -rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/stochastic_physics' -(cd io && make clean) - -Build standalone FV3 io ... - -$ESMF_INC is [] -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -Cleaning io ... - -rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/io' -(cd atmos_cubed_sphere && make clean) - -Build standalone FV3 fv3core ... - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -Cleaning fv3core ... - -rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/atmos_cubed_sphere' -(cd cpl && make clean) - -Build standalone FV3 io ... - -make[1]: Entering directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/FV3/cpl' -Cleaning io ... - -rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[1]: Leaving directory `/scratch1/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs/ufs-weather-model_update_from_gmtb-develop_20191016/rt_20191029/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 -+ rm -rf FV3_INSTALL -+ rm -rf nems_dir -+ elapsed=1032 -+ echo 'Elapsed time 1032 seconds. Compiling app CCPP_repro finished' -Elapsed time 1032 seconds. Compiling app CCPP_repro finished ++ rm -rf build_fv3_2 ++ elapsed=126 ++ echo 'Elapsed time 126 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y finished' +Elapsed time 126 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y finished diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 55ebfda5a4..4000b6834b 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,659 +1,10 @@ -Tue Oct 22 03:47:05 MDT 2019 +Fri Dec 13 08:57:21 MST 2019 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/GNU/fv3_gfdlmp -working dir = /glade/scratch/heinzell/FV3_RT/rt_24695/fv3_gfdlmp -Checking test 01 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 ............SKIP for gnu/pgi compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 01 fv3_gfdlmp PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/GNU/fv3_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_24695/fv3_control_debug -Checking test 02 fv3_control_debug results .... -Test 02 fv3_control_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/GNU/fv3_gfs_v15plus -working dir = /glade/scratch/heinzell/FV3_RT/rt_24695/fv3_gfs_v15plus -Checking test 03 fv3_gfs_v15plus results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu/pgi compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 03 fv3_gfs_v15plus PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/GNU/fv3_gfdlmp_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_24695/fv3_gfdlmp_repro -Checking test 04 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 ............SKIP for gnu/pgi compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 04 fv3_gfdlmp PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/GNU/fv3_gfs_v15plus_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_24695/fv3_gfs_v15plus_repro -Checking test 05 fv3_gfs_v15plus results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu/pgi compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 05 fv3_gfs_v15plus PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/GNU/fv3_gfdlmp_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_24695/fv3_ccpp_gfdlmp_repro -Checking test 06 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu/pgi compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 06 fv3_ccpp_gfdlmp PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/GNU/fv3_gfs_v15plus_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_24695/fv3_ccpp_gfs_v15plus_repro -Checking test 07 fv3_ccpp_gfs_v15plus results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu/pgi compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 07 fv3_ccpp_gfs_v15plus PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_24695/fv3_ccpp_gfdlmp_prod -Checking test 08 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu/pgi compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 08 fv3_ccpp_gfdlmp PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/GNU/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_24695/fv3_ccpp_control_debug_prod -Checking test 09 fv3_ccpp_control_debug results .... -Test 09 fv3_ccpp_control_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/GNU/fv3_gfs_v15plus_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_24695/fv3_ccpp_gfs_v15plus_prod -Checking test 10 fv3_ccpp_gfs_v15plus results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu/pgi compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 10 fv3_ccpp_gfs_v15plus PASS - - -REGRESSION TEST WAS SUCCESSFUL -Tue Oct 22 05:03:22 MDT 2019 - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/GNU/fv3_gfdlmp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66599/fv3_gfdlmp -Checking test 01 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 ............SKIP for gnu/pgi compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 01 fv3_gfdlmp PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/GNU/fv3_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_66599/fv3_control_debug -Checking test 02 fv3_control_debug results .... -Test 02 fv3_control_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/GNU/fv3_gfs_v15plus -working dir = /glade/scratch/heinzell/FV3_RT/rt_66599/fv3_gfs_v15plus -Checking test 03 fv3_gfs_v15plus results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu/pgi compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 03 fv3_gfs_v15plus PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/GNU/fv3_gfdlmp_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_66599/fv3_gfdlmp_repro -Checking test 04 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 ............SKIP for gnu/pgi compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 04 fv3_gfdlmp PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/GNU/fv3_gfs_v15plus_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_66599/fv3_gfs_v15plus_repro -Checking test 05 fv3_gfs_v15plus results .... +baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/ufs-public-release-20191212/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_28250/fv3_ccpp_gfs_v15p2_prod +Checking test 001 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -716,60 +67,12 @@ Checking test 05 fv3_gfs_v15plus results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 05 fv3_gfs_v15plus PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/GNU/fv3_gfdlmp_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_66599/fv3_ccpp_gfdlmp_repro -Checking test 06 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu/pgi compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 06 fv3_ccpp_gfdlmp PASS +Test 001 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/GNU/fv3_gfs_v15plus_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_66599/fv3_ccpp_gfs_v15plus_repro -Checking test 07 fv3_ccpp_gfs_v15plus results .... +baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/ufs-public-release-20191212/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_28250/fv3_ccpp_gfs_v16beta_prod +Checking test 002 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -832,130 +135,21 @@ Checking test 07 fv3_ccpp_gfs_v15plus results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 07 fv3_ccpp_gfs_v15plus PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66599/fv3_ccpp_gfdlmp_prod -Checking test 08 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu/pgi compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 08 fv3_ccpp_gfdlmp PASS +Test 002 fv3_ccpp_gfs_v16beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/GNU/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66599/fv3_ccpp_control_debug_prod -Checking test 09 fv3_ccpp_control_debug results .... -Test 09 fv3_ccpp_control_debug PASS +baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/ufs-public-release-20191212/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_28250/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 003 fv3_ccpp_gfs_v15p2_debug results .... +Test 003 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/GNU/fv3_gfs_v15plus_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66599/fv3_ccpp_gfs_v15plus_prod -Checking test 10 fv3_ccpp_gfs_v15plus results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu/pgi compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 10 fv3_ccpp_gfs_v15plus PASS +baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/ufs-public-release-20191212/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_28250/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 004 fv3_ccpp_gfs_v16beta_debug results .... +Test 004 fv3_ccpp_gfs_v16beta_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Oct 24 19:29:53 MDT 2019 +Fri Dec 13 09:14:28 MST 2019 +Elapsed time: 00h:17m:07s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 63969957ba..c496ec1466 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,10 +1,10 @@ -Thu Oct 24 18:34:38 MDT 2019 +Fri Dec 13 08:57:17 MST 2019 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_control -Checking test 01 fv3_control results .... +baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/ufs-public-release-20191212/INTEL/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_28142/fv3_ccpp_gfs_v15p2_prod +Checking test 001 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -55,6131 +55,24 @@ Checking test 01 fv3_control 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 01 fv3_control PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_decomp -Checking test 02 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 02 fv3_decomp PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_2threads -Checking test 03 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 03 fv3_2threads PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_restart -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_restart -Checking test 04 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 04 fv3_restart PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_read_inc -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_read_inc -Checking test 05 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 05 fv3_read_inc PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_gfdlmp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_gfdlmp -Checking test 06 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 06 fv3_gfdlmp PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_gfdlmprad -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_gfdlmprad -Checking test 07 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 -Test 07 fv3_gfdlmprad PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_gfdlmprad_gwd -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_gfdlmprad_gwd -Checking test 08 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 08 fv3_gfdlmprad_gwd PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_gfdlmprad_noahmp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_gfdlmprad_noahmp -Checking test 09 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 09 fv3_gfdlmprad_noahmp PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 100 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 100 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 101 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 101 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 102 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 102 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_wrtGauss_nemsio_c768_prod -Checking test 103 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 -Test 103 fv3_ccpp_wrtGauss_nemsio_c768 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_stochy_prod -Checking test 104 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 104 fv3_ccpp_stochy PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_iau_prod -Checking test 105 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 105 fv3_ccpp_iau PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_appbuild_prod -Checking test 106 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 106 fv3_ccpp_appbuild PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_control_32bit_prod -Checking test 107 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 107 fv3_ccpp_control_32bit PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_stretched_prod -Checking test 108 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 108 fv3_ccpp_stretched PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_stretched_nest_prod -Checking test 109 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 109 fv3_ccpp_stretched_nest PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_thompson -Checking test 10 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 RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 10 fv3_thompson PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_regional_control_prod -Checking test 110 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 110 fv3_ccpp_regional_control PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_regional_restart_prod -Checking test 111 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 111 fv3_ccpp_regional_restart PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_regional_quilt_prod -Checking test 112 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 112 fv3_ccpp_regional_quilt PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_control_debug_prod -Checking test 113 fv3_ccpp_control_debug results .... -Test 113 fv3_ccpp_control_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_stretched_nest_debug_prod -Checking test 114 fv3_ccpp_stretched_nest_debug results .... -Test 114 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_gfdlmp_prod -Checking test 115 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 115 fv3_ccpp_gfdlmp PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 116 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 116 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 117 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 117 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_csawmg_prod -Checking test 118 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 118 fv3_ccpp_csawmg PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_satmedmf_prod -Checking test 119 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 119 fv3_ccpp_satmedmf PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_wsm6 -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_wsm6 -Checking test 11 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 11 fv3_wsm6 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_gfdlmp_32bit_prod -Checking test 120 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 120 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_gfs_v15_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_gfs_v15_prod -Checking test 121 fv3_ccpp_gfs_v15 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 121 fv3_ccpp_gfs_v15 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_gfs_v15plus_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_gfs_v15plus_prod -Checking test 122 fv3_ccpp_gfs_v15plus results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 122 fv3_ccpp_gfs_v15plus PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_cpt_prod -Checking test 123 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 123 fv3_ccpp_cpt PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_gsd_prod -Checking test 124 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 124 fv3_ccpp_gsd PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_wrtGauss_netcdf_esmf -Checking test 12 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 12 fv3_wrtGauss_netcdf_esmf PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_wrtGauss_netcdf -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_wrtGauss_netcdf -Checking test 13 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 13 fv3_wrtGauss_netcdf PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_wrtGauss_nemsio -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_wrtGauss_nemsio -Checking test 14 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 14 fv3_wrtGauss_nemsio PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_wrtGauss_nemsio_c192 -Checking test 15 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 15 fv3_wrtGauss_nemsio_c192 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_wrtGauss_nemsio_c768 -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_wrtGauss_nemsio_c768 -Checking test 16 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 -Test 16 fv3_wrtGauss_nemsio_c768 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_stochy -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_stochy -Checking test 17 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 17 fv3_stochy PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_iau -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_iau -Checking test 18 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 18 fv3_iau PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_csawmgshoc -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_csawmgshoc -Checking test 19 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 19 fv3_csawmgshoc PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_csawmg -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_csawmg -Checking test 20 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 20 fv3_csawmg PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_rasmgshoc -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_rasmgshoc -Checking test 21 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 21 fv3_rasmgshoc PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_csawmg3shoc127 -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_csawmg3shoc127 -Checking test 22 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 22 fv3_csawmg3shoc127 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_satmedmf -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_satmedmf -Checking test 23 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 23 fv3_satmedmf PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_lheatstrg -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_lheatstrg -Checking test 24 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 24 fv3_lheatstrg PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_appbuild -Checking test 25 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 25 fv3_appbuild PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_control_32bit -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_control_32bit -Checking test 26 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 26 fv3_control_32bit PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_stretched -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_stretched -Checking test 27 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 27 fv3_stretched PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_stretched_nest -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_stretched_nest -Checking test 28 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 28 fv3_stretched_nest PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_stretched_nest_quilt -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_stretched_nest_quilt -Checking test 29 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 29 fv3_stretched_nest_quilt PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_regional_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_regional_control -Checking test 30 fv3_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 30 fv3_regional_control PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_regional_restart -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_regional_restart -Checking test 31 fv3_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 31 fv3_regional_restart PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_regional_quilt -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_regional_quilt -Checking test 32 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 32 fv3_regional_quilt PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_control_debug -Checking test 33 fv3_control_debug results .... -Test 33 fv3_control_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_stretched_nest -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_stretched_nest_debug -Checking test 34 fv3_stretched_nest_debug results .... -Test 34 fv3_stretched_nest_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_control_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_control_repro -Checking test 35 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 35 fv3_control PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_control_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_decomp_repro -Checking test 36 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 36 fv3_decomp PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_control_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_2threads_repro -Checking test 37 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 37 fv3_2threads PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_restart_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_restart_repro -Checking test 38 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 38 fv3_restart PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_read_inc_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_read_inc_repro -Checking test 39 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 39 fv3_read_inc PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_wrtGauss_netcdf_esmf_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_wrtGauss_netcdf_esmf_repro -Checking test 40 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 40 fv3_wrtGauss_netcdf_esmf PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_wrtGauss_netcdf_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_wrtGauss_netcdf_repro -Checking test 41 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 41 fv3_wrtGauss_netcdf PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_wrtGauss_nemsio_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_wrtGauss_nemsio_repro -Checking test 42 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 42 fv3_wrtGauss_nemsio PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_wrtGauss_nemsio_c192_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_wrtGauss_nemsio_c192_repro -Checking test 43 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 43 fv3_wrtGauss_nemsio_c192 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_wrtGauss_nemsio_c768_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_wrtGauss_nemsio_c768_repro -Checking test 44 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 -Test 44 fv3_wrtGauss_nemsio_c768 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_stochy_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_stochy_repro -Checking test 45 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 45 fv3_stochy PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_iau_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_iau_repro -Checking test 46 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 46 fv3_iau PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_gfdlmp_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_gfdlmp_repro -Checking test 47 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 47 fv3_gfdlmp PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_gfdlmprad_gwd_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_gfdlmprad_gwd_repro -Checking test 48 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 48 fv3_gfdlmprad_gwd PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_gfdlmprad_noahmp_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_gfdlmprad_noahmp_repro -Checking test 49 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 49 fv3_gfdlmprad_noahmp PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_csawmgshoc_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_csawmgshoc_repro -Checking test 50 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 50 fv3_csawmgshoc PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_csawmg3shoc127_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_csawmg3shoc127_repro -Checking test 51 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 51 fv3_csawmg3shoc127 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_csawmg_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_csawmg_repro -Checking test 52 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 52 fv3_csawmg PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_satmedmf_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_satmedmf_repro -Checking test 53 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 53 fv3_satmedmf PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_control_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_appbuild_repro -Checking test 54 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 54 fv3_appbuild PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_control_32bit_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_control_32bit_repro -Checking test 55 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 55 fv3_control_32bit PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_stretched_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_stretched_repro -Checking test 56 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 56 fv3_stretched PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_stretched_nest_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_stretched_nest_repro -Checking test 57 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 57 fv3_stretched_nest PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_regional_control_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_regional_control_repro -Checking test 58 fv3_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 58 fv3_regional_control PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_regional_restart_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_regional_restart_repro -Checking test 59 fv3_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 59 fv3_regional_restart PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_regional_quilt_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_regional_quilt_repro -Checking test 60 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 60 fv3_regional_quilt PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_gfdlmp_32bit_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_gfdlmp_32bit_repro -Checking test 61 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 61 fv3_gfdlmp_32bit PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_gfs_v15_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_gfs_v15_repro -Checking test 62 fv3_gfs_v15 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 62 fv3_gfs_v15 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_gfs_v15plus_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_gfs_v15plus_repro -Checking test 63 fv3_gfs_v15plus results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 63 fv3_gfs_v15plus PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_cpt_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_cpt_repro -Checking test 64 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 64 fv3_cpt PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_control_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_control_repro -Checking test 65 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 65 fv3_ccpp_control PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_control_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_decomp_repro -Checking test 66 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 66 fv3_ccpp_decomp PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_control_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_2threads_repro -Checking test 67 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 67 fv3_ccpp_2threads PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_restart_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_restart_repro -Checking test 68 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 68 fv3_ccpp_restart PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_read_inc_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_read_inc_repro -Checking test 69 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 69 fv3_ccpp_read_inc PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_wrtGauss_netcdf_esmf_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_wrtGauss_netcdf_esmf_repro -Checking test 70 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 70 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_wrtGauss_netcdf_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_wrtGauss_netcdf_repro -Checking test 71 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 71 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_wrtGauss_nemsio_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_wrtGauss_nemsio_repro -Checking test 72 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 72 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_wrtGauss_nemsio_c192_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_wrtGauss_nemsio_c192_repro -Checking test 73 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 73 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_wrtGauss_nemsio_c768_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_wrtGauss_nemsio_c768_repro -Checking test 74 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 -Test 74 fv3_ccpp_wrtGauss_nemsio_c768 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_stochy_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_stochy_repro -Checking test 75 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 75 fv3_ccpp_stochy PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_iau_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_iau_repro -Checking test 76 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 76 fv3_ccpp_iau PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_control_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_appbuild_repro -Checking test 77 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 77 fv3_ccpp_appbuild PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_control_32bit_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_control_32bit_repro -Checking test 78 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 78 fv3_ccpp_control_32bit PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_stretched_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_stretched_repro -Checking test 79 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 79 fv3_ccpp_stretched PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_stretched_nest_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_stretched_nest_repro -Checking test 80 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 80 fv3_ccpp_stretched_nest PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_regional_control_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_regional_control_repro -Checking test 81 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 81 fv3_ccpp_regional_control PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_regional_restart_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_regional_restart_repro -Checking test 82 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 82 fv3_ccpp_regional_restart PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_regional_quilt_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_regional_quilt_repro -Checking test 83 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 83 fv3_ccpp_regional_quilt PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_gfdlmp_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_gfdlmp_repro -Checking test 84 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 84 fv3_ccpp_gfdlmp PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_gfdlmprad_gwd_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_gfdlmprad_gwd_repro -Checking test 85 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 85 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_gfdlmprad_noahmp_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_gfdlmprad_noahmp_repro -Checking test 86 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 86 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_csawmg_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_csawmg_repro -Checking test 87 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 87 fv3_ccpp_csawmg PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_satmedmf_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_satmedmf_repro -Checking test 88 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 88 fv3_ccpp_satmedmf PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_gfdlmp_32bit_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_gfdlmp_32bit_repro -Checking test 89 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 89 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_gfs_v15_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_gfs_v15_repro -Checking test 90 fv3_ccpp_gfs_v15 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 90 fv3_ccpp_gfs_v15 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_gfs_v15plus_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_gfs_v15plus_repro -Checking test 91 fv3_ccpp_gfs_v15plus results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 91 fv3_ccpp_gfs_v15plus PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_cpt_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_cpt_repro -Checking test 92 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 92 fv3_ccpp_cpt PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_gsd_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_gsd_repro -Checking test 93 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 93 fv3_ccpp_gsd PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_control_prod -Checking test 94 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 94 fv3_ccpp_control PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_decomp_prod -Checking test 95 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 95 fv3_ccpp_decomp PASS +Test 001 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_2threads_prod -Checking test 96 fv3_ccpp_2threads results .... +baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/ufs-public-release-20191212/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_28142/fv3_ccpp_gfs_v16beta_prod +Checking test 002 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -6230,204 +123,33 @@ Checking test 96 fv3_ccpp_2threads results .... Comparing RESTART/fv_tracer.res.tile4.nc .........OK Comparing RESTART/fv_tracer.res.tile5.nc .........OK Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 96 fv3_ccpp_2threads PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_restart_prod -Checking test 97 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 97 fv3_ccpp_restart PASS +Test 002 fv3_ccpp_gfs_v16beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_read_inc_prod -Checking test 98 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 98 fv3_ccpp_read_inc PASS +baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/ufs-public-release-20191212/INTEL/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_28142/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 003 fv3_ccpp_gfs_v15p2_debug results .... +Test 003 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20191021/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72209/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 99 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 99 fv3_ccpp_wrtGauss_netcdf_esmf PASS +baseline dir = /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/ufs-public-release-20191212/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_28142/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 004 fv3_ccpp_gfs_v16beta_debug results .... +Test 004 fv3_ccpp_gfs_v16beta_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Oct 25 09:22:24 MDT 2019 +Fri Dec 13 09:22:08 MST 2019 +Elapsed time: 00h:24m:52s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index adf854b231..7eda02be1a 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,6391 +1,10 @@ -Tue Oct 29 03:46:48 UTC 2019 +Fri Dec 13 15:49:56 UTC 2019 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_control -Checking test 01 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 01 fv3_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_decomp -Checking test 02 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 02 fv3_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_2threads -Checking test 03 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 03 fv3_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_restart -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_restart -Checking test 04 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 04 fv3_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_read_inc -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_read_inc -Checking test 05 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 05 fv3_read_inc PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gfdlmp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_gfdlmp -Checking test 06 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 06 fv3_gfdlmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gfdlmprad -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_gfdlmprad -Checking test 07 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 -Test 07 fv3_gfdlmprad PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gfdlmprad_gwd -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_gfdlmprad_gwd -Checking test 08 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 08 fv3_gfdlmprad_gwd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gfdlmprad_noahmp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_gfdlmprad_noahmp -Checking test 09 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 09 fv3_gfdlmprad_noahmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_control_prod -Checking test 100 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 100 fv3_ccpp_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_decomp_prod -Checking test 101 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 101 fv3_ccpp_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_2threads_prod -Checking test 102 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 102 fv3_ccpp_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_restart_prod -Checking test 103 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 103 fv3_ccpp_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_read_inc_prod -Checking test 104 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 104 fv3_ccpp_read_inc PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 105 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 105 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 106 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 106 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 107 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 107 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 108 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 108 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_wrtGauss_nemsio_c768_prod -Checking test 109 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 -Test 109 fv3_ccpp_wrtGauss_nemsio_c768 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_thompson -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_thompson -Checking test 10 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 RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 10 fv3_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_stochy_prod -Checking test 110 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 110 fv3_ccpp_stochy PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_iau_prod -Checking test 111 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 111 fv3_ccpp_iau PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_appbuild_prod -Checking test 112 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 112 fv3_ccpp_appbuild PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_control_32bit_prod -Checking test 113 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 113 fv3_ccpp_control_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_stretched_prod -Checking test 114 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 114 fv3_ccpp_stretched PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_stretched_nest_prod -Checking test 115 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 115 fv3_ccpp_stretched_nest PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_regional_control_prod -Checking test 116 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 116 fv3_ccpp_regional_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_regional_restart_prod -Checking test 117 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 117 fv3_ccpp_regional_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_regional_quilt_prod -Checking test 118 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 118 fv3_ccpp_regional_quilt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_regional_c768_prod -Checking test 119 fv3_ccpp_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 119 fv3_ccpp_regional_c768 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_wsm6 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_wsm6 -Checking test 11 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 11 fv3_wsm6 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_control_debug_prod -Checking test 120 fv3_ccpp_control_debug results .... -Test 120 fv3_ccpp_control_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_stretched_nest_debug_prod -Checking test 121 fv3_ccpp_stretched_nest_debug results .... -Test 121 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_gfdlmp_prod -Checking test 122 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 122 fv3_ccpp_gfdlmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 123 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 123 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 124 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 124 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_csawmg_prod -Checking test 125 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 125 fv3_ccpp_csawmg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_satmedmf_prod -Checking test 126 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 126 fv3_ccpp_satmedmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_gfdlmp_32bit_prod -Checking test 127 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 127 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 128 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 GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 128 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gfs_v15_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_gfs_v15_prod -Checking test 129 fv3_ccpp_gfs_v15 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 129 fv3_ccpp_gfs_v15 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_wrtGauss_netcdf_esmf -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_wrtGauss_netcdf_esmf -Checking test 12 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 12 fv3_wrtGauss_netcdf_esmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gfs_v15plus_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_gfs_v15plus_prod -Checking test 130 fv3_ccpp_gfs_v15plus results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 130 fv3_ccpp_gfs_v15plus PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_cpt_prod -Checking test 131 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 131 fv3_ccpp_cpt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_gsd_prod -Checking test 132 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 132 fv3_ccpp_gsd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_wrtGauss_netcdf -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_wrtGauss_netcdf -Checking test 13 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 13 fv3_wrtGauss_netcdf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_wrtGauss_nemsio -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_wrtGauss_nemsio -Checking test 14 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 14 fv3_wrtGauss_nemsio PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_wrtGauss_nemsio_c192 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_wrtGauss_nemsio_c192 -Checking test 15 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 15 fv3_wrtGauss_nemsio_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_wrtGauss_nemsio_c768 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_wrtGauss_nemsio_c768 -Checking test 16 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 -Test 16 fv3_wrtGauss_nemsio_c768 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_stochy -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_stochy -Checking test 17 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 17 fv3_stochy PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_iau -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_iau -Checking test 18 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 18 fv3_iau PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_csawmgshoc -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_csawmgshoc -Checking test 19 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 19 fv3_csawmgshoc PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_csawmg -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_csawmg -Checking test 20 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 20 fv3_csawmg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_rasmgshoc -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_rasmgshoc -Checking test 21 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 21 fv3_rasmgshoc PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_csawmg3shoc127 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_csawmg3shoc127 -Checking test 22 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 22 fv3_csawmg3shoc127 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_satmedmf -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_satmedmf -Checking test 23 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 23 fv3_satmedmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_lheatstrg -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_lheatstrg -Checking test 24 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 24 fv3_lheatstrg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_appbuild -Checking test 25 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 25 fv3_appbuild PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_control_32bit -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_control_32bit -Checking test 26 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 26 fv3_control_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gfdlmprad_32bit_post -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_gfdlmprad_32bit_post -Checking test 27 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 GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 27 fv3_gfdlmprad_32bit_post PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_stretched -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_stretched -Checking test 28 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 28 fv3_stretched PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_stretched_nest -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_stretched_nest -Checking test 29 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 29 fv3_stretched_nest PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_stretched_nest_quilt -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_stretched_nest_quilt -Checking test 30 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 30 fv3_stretched_nest_quilt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_regional_control -Checking test 31 fv3_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 31 fv3_regional_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_regional_restart -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_regional_restart -Checking test 32 fv3_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 32 fv3_regional_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_regional_quilt -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_regional_quilt -Checking test 33 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 33 fv3_regional_quilt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_regional_c768 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_regional_c768 -Checking test 34 fv3_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 34 fv3_regional_c768 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_control_debug -Checking test 35 fv3_control_debug results .... -Test 35 fv3_control_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_stretched_nest -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_stretched_nest_debug -Checking test 36 fv3_stretched_nest_debug results .... -Test 36 fv3_stretched_nest_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_control_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_control_repro -Checking test 37 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 37 fv3_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_control_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_decomp_repro -Checking test 38 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 38 fv3_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_control_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_2threads_repro -Checking test 39 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 39 fv3_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_restart_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_restart_repro -Checking test 40 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 40 fv3_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_read_inc_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_read_inc_repro -Checking test 41 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 41 fv3_read_inc PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_wrtGauss_netcdf_esmf_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_wrtGauss_netcdf_esmf_repro -Checking test 42 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 42 fv3_wrtGauss_netcdf_esmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_wrtGauss_netcdf_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_wrtGauss_netcdf_repro -Checking test 43 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 43 fv3_wrtGauss_netcdf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_wrtGauss_nemsio_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_wrtGauss_nemsio_repro -Checking test 44 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 44 fv3_wrtGauss_nemsio PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_wrtGauss_nemsio_c192_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_wrtGauss_nemsio_c192_repro -Checking test 45 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 45 fv3_wrtGauss_nemsio_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_wrtGauss_nemsio_c768_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_wrtGauss_nemsio_c768_repro -Checking test 46 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 -Test 46 fv3_wrtGauss_nemsio_c768 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_stochy_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_stochy_repro -Checking test 47 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 47 fv3_stochy PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_iau_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_iau_repro -Checking test 48 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 48 fv3_iau PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gfdlmp_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_gfdlmp_repro -Checking test 49 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 49 fv3_gfdlmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gfdlmprad_gwd_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_gfdlmprad_gwd_repro -Checking test 50 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 50 fv3_gfdlmprad_gwd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gfdlmprad_noahmp_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_gfdlmprad_noahmp_repro -Checking test 51 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 51 fv3_gfdlmprad_noahmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_csawmgshoc_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_csawmgshoc_repro -Checking test 52 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 52 fv3_csawmgshoc PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_csawmg3shoc127_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_csawmg3shoc127_repro -Checking test 53 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 53 fv3_csawmg3shoc127 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_csawmg_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_csawmg_repro -Checking test 54 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 54 fv3_csawmg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_satmedmf_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_satmedmf_repro -Checking test 55 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 55 fv3_satmedmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_control_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_appbuild_repro -Checking test 56 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 56 fv3_appbuild PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_control_32bit_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_control_32bit_repro -Checking test 57 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 57 fv3_control_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gfdlmprad_32bit_post_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_gfdlmprad_32bit_post_repro -Checking test 58 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 GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 58 fv3_gfdlmprad_32bit_post PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_stretched_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_stretched_repro -Checking test 59 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 59 fv3_stretched PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_stretched_nest_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_stretched_nest_repro -Checking test 60 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 60 fv3_stretched_nest PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_regional_control_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_regional_control_repro -Checking test 61 fv3_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 61 fv3_regional_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_regional_restart_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_regional_restart_repro -Checking test 62 fv3_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 62 fv3_regional_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_regional_quilt_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_regional_quilt_repro -Checking test 63 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 63 fv3_regional_quilt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_regional_c768_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_regional_c768_repro -Checking test 64 fv3_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 64 fv3_regional_c768 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gfdlmp_32bit_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_gfdlmp_32bit_repro -Checking test 65 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 65 fv3_gfdlmp_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gfs_v15_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_gfs_v15_repro -Checking test 66 fv3_gfs_v15 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 66 fv3_gfs_v15 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gfs_v15plus_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_gfs_v15plus_repro -Checking test 67 fv3_gfs_v15plus results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 67 fv3_gfs_v15plus PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_cpt_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_cpt_repro -Checking test 68 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 68 fv3_cpt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_control_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_control_repro -Checking test 69 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 69 fv3_ccpp_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_control_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_decomp_repro -Checking test 70 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 70 fv3_ccpp_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_control_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_2threads_repro -Checking test 71 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 71 fv3_ccpp_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_restart_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_restart_repro -Checking test 72 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 72 fv3_ccpp_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_read_inc_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_read_inc_repro -Checking test 73 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 73 fv3_ccpp_read_inc PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_wrtGauss_netcdf_esmf_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_wrtGauss_netcdf_esmf_repro -Checking test 74 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 74 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_wrtGauss_netcdf_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_wrtGauss_netcdf_repro -Checking test 75 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 75 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_wrtGauss_nemsio_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_wrtGauss_nemsio_repro -Checking test 76 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 76 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_wrtGauss_nemsio_c192_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_wrtGauss_nemsio_c192_repro -Checking test 77 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 77 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_wrtGauss_nemsio_c768_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_wrtGauss_nemsio_c768_repro -Checking test 78 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 -Test 78 fv3_ccpp_wrtGauss_nemsio_c768 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_stochy_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_stochy_repro -Checking test 79 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 79 fv3_ccpp_stochy PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_iau_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_iau_repro -Checking test 80 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 80 fv3_ccpp_iau PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_control_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_appbuild_repro -Checking test 81 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 81 fv3_ccpp_appbuild PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_control_32bit_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_control_32bit_repro -Checking test 82 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 82 fv3_ccpp_control_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_stretched_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_stretched_repro -Checking test 83 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 83 fv3_ccpp_stretched PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_stretched_nest_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_stretched_nest_repro -Checking test 84 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 84 fv3_ccpp_stretched_nest PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_regional_control_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_regional_control_repro -Checking test 85 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 85 fv3_ccpp_regional_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_regional_restart_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_regional_restart_repro -Checking test 86 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 86 fv3_ccpp_regional_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_regional_quilt_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_regional_quilt_repro -Checking test 87 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 87 fv3_ccpp_regional_quilt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_regional_c768_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_regional_c768_repro -Checking test 88 fv3_ccpp_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 88 fv3_ccpp_regional_c768 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gfdlmp_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_gfdlmp_repro -Checking test 89 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 89 fv3_ccpp_gfdlmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gfdlmprad_gwd_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_gfdlmprad_gwd_repro -Checking test 90 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 90 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gfdlmprad_noahmp_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_gfdlmprad_noahmp_repro -Checking test 91 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 91 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_csawmg_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_csawmg_repro -Checking test 92 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 92 fv3_ccpp_csawmg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_satmedmf_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_satmedmf_repro -Checking test 93 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 93 fv3_ccpp_satmedmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gfdlmp_32bit_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_gfdlmp_32bit_repro -Checking test 94 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 94 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gfdlmprad_32bit_post_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_gfdlmprad_32bit_post_repro -Checking test 95 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 GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 95 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gfs_v15_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_gfs_v15_repro -Checking test 96 fv3_ccpp_gfs_v15 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/ufs-public-release-20191212/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_119164/fv3_ccpp_gfs_v15p2_prod +Checking test 001 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -6448,12 +67,12 @@ Checking test 96 fv3_ccpp_gfs_v15 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 96 fv3_ccpp_gfs_v15 PASS +Test 001 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gfs_v15plus_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_gfs_v15plus_repro -Checking test 97 fv3_ccpp_gfs_v15plus results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/ufs-public-release-20191212/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_119164/fv3_ccpp_gfs_v16beta_prod +Checking test 002 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -6516,154 +135,21 @@ Checking test 97 fv3_ccpp_gfs_v15plus results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 97 fv3_ccpp_gfs_v15plus PASS +Test 002 fv3_ccpp_gfs_v16beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_cpt_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_cpt_repro -Checking test 98 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 98 fv3_ccpp_cpt PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/ufs-public-release-20191212/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_119164/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 003 fv3_ccpp_gfs_v15p2_debug results .... +Test 003 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20191021/fv3_gsd_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_118787/fv3_ccpp_gsd_repro -Checking test 99 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 99 fv3_ccpp_gsd PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/ufs-public-release-20191212/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_119164/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 004 fv3_ccpp_gfs_v16beta_debug results .... +Test 004 fv3_ccpp_gfs_v16beta_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Oct 29 18:51:52 UTC 2019 +Fri Dec 13 16:12:43 UTC 2019 +Elapsed time: 00h:22m:48s. Have a nice day! diff --git a/tests/compile.sh b/tests/compile.sh index f97c101521..43d3fb6734 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -60,6 +60,12 @@ 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 diff --git a/tests/compile_cmake.sh b/tests/compile_cmake.sh index b6c3855f8c..39bdc7360c 100755 --- a/tests/compile_cmake.sh +++ b/tests/compile_cmake.sh @@ -89,13 +89,7 @@ fi if [[ "${MAKE_OPT}" == *"CCPP=Y"* ]]; then - # Account for inconsistencies in HPC modules: if environment variable - # NETCDF is undefined, try to set from NETCDF_DIR, NETCDF_ROOT, ... - if [[ "${MACHINE_ID}" == "wcoss_cray" ]]; then - NETCDF=${NETCDF:-${NETCDF_DIR}} - fi - - CCPP_CMAKE_FLAGS="${CCPP_CMAKE_FLAGS} -DNETCDF_DIR=${NETCDF} -DCCPP=ON -DMPI=ON" + CCPP_CMAKE_FLAGS="${CCPP_CMAKE_FLAGS} -DCCPP=ON -DMPI=ON" if [[ "${MAKE_OPT}" == *"DEBUG=Y"* ]]; then CCPP_CMAKE_FLAGS="${CCPP_CMAKE_FLAGS} -DCMAKE_BUILD_TYPE=Debug" @@ -152,6 +146,7 @@ CCPP_CMAKE_FLAGS=$(trim "${CCPP_CMAKE_FLAGS}") else module use $PATHTR/modulefiles/${MACHINE_ID} module load fv3 + module list fi cd ${BUILD_DIR} diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 110993b338..a8dc0f2f36 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -135,6 +135,7 @@ export GWD_OPT=1 # PBL export SATMEDMF=.F. +export ISATMEDMF=0 export HYBEDMF=.T. export SHINHONG=.F. export DO_YSU=.F. diff --git a/tests/fv3_conf/ccpp_control_run.IN b/tests/fv3_conf/ccpp_control_run.IN index 591497e49c..68e5df4629 100644 --- a/tests/fv3_conf/ccpp_control_run.IN +++ b/tests/fv3_conf/ccpp_control_run.IN @@ -32,10 +32,10 @@ cp @[RTPWD]/${inputdir}/*grb . cp @[RTPWD]/${inputdir}/*_table . cp @[RTPWD]/${inputdir}/*configure . -cp ${PATHRT}/../ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml +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 "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 d6d84e1338..c193d41f0d 100644 --- a/tests/fv3_conf/ccpp_cpt_run.IN +++ b/tests/fv3_conf/ccpp_cpt_run.IN @@ -18,10 +18,10 @@ cp @[RTPWD]/${inputdir}/diag_table_mg3tke diag_table cp @[RTPWD]/${inputdir}/field_table_csawmg3shoc field_table cp @[RTPWD]/${inputdir}/*configure . -cp ${PATHRT}/../ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml +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 "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 d6d84e1338..c193d41f0d 100644 --- a/tests/fv3_conf/ccpp_csawmg3shoc127_run.IN +++ b/tests/fv3_conf/ccpp_csawmg3shoc127_run.IN @@ -18,10 +18,10 @@ cp @[RTPWD]/${inputdir}/diag_table_mg3tke diag_table cp @[RTPWD]/${inputdir}/field_table_csawmg3shoc field_table cp @[RTPWD]/${inputdir}/*configure . -cp ${PATHRT}/../ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml +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 "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 7f61d03250..88f3c856fa 100644 --- a/tests/fv3_conf/ccpp_csawmg_run.IN +++ b/tests/fv3_conf/ccpp_csawmg_run.IN @@ -19,10 +19,10 @@ cp @[RTPWD]/FV3_input_data/diag_table_mgrs diag_table cp @[RTPWD]/FV3_input_data/field_table_csawmg field_table cp @[RTPWD]/FV3_input_data/*configure . -cp ${PATHRT}/../ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml +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 "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 0524a05561..fa6142ad20 100644 --- a/tests/fv3_conf/ccpp_csawmgshoc_run.IN +++ b/tests/fv3_conf/ccpp_csawmgshoc_run.IN @@ -19,10 +19,10 @@ cp @[RTPWD]/FV3_input_data/diag_table_mgtkers diag_table cp @[RTPWD]/FV3_input_data/field_table_csawmgshoc field_table cp @[RTPWD]/FV3_input_data/*configure . -cp ${PATHRT}/../ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml +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 "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 3a79ce13b2..3b6af18ae8 100644 --- a/tests/fv3_conf/ccpp_gf_thompson_run.IN +++ b/tests/fv3_conf/ccpp_gf_thompson_run.IN @@ -22,11 +22,11 @@ cp @[RTPWD]/FV3_input_data_gsd/qr_acr_qg.dat . cp @[RTPWD]/FV3_input_data_gsd/freezeH2O.dat . cp @[RTPWD]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . -cp ${PATHRT}/../ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml +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 "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 d52f6beeab..5feb6fa59c 100644 --- a/tests/fv3_conf/ccpp_gfdlmp_run.IN +++ b/tests/fv3_conf/ccpp_gfdlmp_run.IN @@ -17,10 +17,10 @@ cp @[RTPWD]/FV3_input_data/diag_table_gfdlmp diag_table cp @[RTPWD]/FV3_input_data/field_table_gfdlmp field_table cp @[RTPWD]/FV3_input_data/*configure . -cp ${PATHRT}/../ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml +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 "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 c87765f2e4..e5556cc9aa 100644 --- a/tests/fv3_conf/ccpp_gfs_v15_run.IN +++ b/tests/fv3_conf/ccpp_gfs_v15_run.IN @@ -1,4 +1,3 @@ - if [ $WARM_START = .F. ]; then cp -r @[RTPWD]/FV3_input_data/INPUT . mkdir RESTART @@ -18,10 +17,10 @@ cp @[RTPWD]/FV3_input_data/diag_table_gfdlmp diag_table cp @[RTPWD]/FV3_input_data_gsd/field_table_suite2 field_table cp @[RTPWD]/FV3_input_data/*configure . -cp ${PATHRT}/../ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml +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 "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_run.IN b/tests/fv3_conf/ccpp_gsd_run.IN index 2f12b2a2c9..957dd6d5a3 100644 --- a/tests/fv3_conf/ccpp_gsd_run.IN +++ b/tests/fv3_conf/ccpp_gsd_run.IN @@ -53,11 +53,11 @@ if [ $IMP_PHYSICS = 8 ]; then cp @[RTPWD]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . fi -cp ${PATHRT}/../ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml +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 "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 65311d91e6..d4070e0c6a 100644 --- a/tests/fv3_conf/ccpp_regional_run.IN +++ b/tests/fv3_conf/ccpp_regional_run.IN @@ -16,10 +16,10 @@ 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}/../ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml +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 "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_satmedmf_run.IN b/tests/fv3_conf/ccpp_satmedmf_run.IN index bb8b2b57d0..2fa327ffa2 100644 --- a/tests/fv3_conf/ccpp_satmedmf_run.IN +++ b/tests/fv3_conf/ccpp_satmedmf_run.IN @@ -26,10 +26,10 @@ cp @[RTPWD]/${inputdir}/*_table . cp @[RTPWD]/${inputdir}/field_table_satmedmf field_table cp @[RTPWD]/${inputdir}/*configure . -cp ${PATHRT}/../ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml +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 "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 cdb8d702a6..41a7be91c3 100644 --- a/tests/fv3_conf/ccpp_stretched_run.IN +++ b/tests/fv3_conf/ccpp_stretched_run.IN @@ -17,10 +17,10 @@ mkdir INPUT RESTART rsync -arv @[RTPWD]/@[INPUT_DIR]/INPUT/. INPUT/. # *DH 20190528 -cp ${PATHRT}/../ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml +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 "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/rt.conf b/tests/rt.conf index eec0894999..1a7141b00b 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -1,368 +1,21 @@ ####################################################################################################################################################################################### -# IPD PROD tests # -####################################################################################################################################################################################### - -COMPILE | | standard | wcoss_cray | fv3 | -COMPILE | | standard | wcoss_dell_p3 | fv3 | -COMPILE | | standard | hera.intel | fv3 | -COMPILE | | standard | cheyenne.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 | standard | | fv3 | -RUN | fv3_gfdlmprad_gwd | standard | | fv3 | -RUN | fv3_gfdlmprad_noahmp | standard | | fv3 | -RUN | fv3_thompson | 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_wrtGauss_nemsio_c768 | standard | hera.intel | fv3 | -RUN | fv3_wrtGauss_nemsio_c768 | standard | cheyenne.intel | fv3 | -RUN | fv3_wrtGauss_nemsio_c768 | standard | wcoss_cray | 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 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 | cheyenne.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 | cheyenne.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_stretched_nest_quilt | standard | cheyenne.intel | fv3 | - -RUN | fv3_regional_control | standard | | fv3 | -RUN | fv3_regional_restart | standard | | fv3 | fv3_regional_control -RUN | fv3_regional_quilt | standard | | 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 | wcoss_cray | 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 | -COMPILE | 32BIT=Y DEBUG=Y | standard | cheyenne.intel | fv3 | -RUN | fv3_control_debug | standard | hera.intel | fv3 | -RUN | fv3_control_debug | standard | cheyenne.intel | fv3 | -RUN | fv3_stretched_nest_debug | standard | hera.intel | fv3 | -RUN | fv3_stretched_nest_debug | standard | cheyenne.intel | fv3 | - -####################################################################################################################################################################################### -# IPD REPRO tests # +# CCPP PROD 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 | cheyenne.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_wrtGauss_nemsio_c768 | standard | hera.intel | fv3 | -RUN | fv3_wrtGauss_nemsio_c768 | standard | cheyenne.intel | fv3 | -RUN | fv3_wrtGauss_nemsio_c768 | standard | wcoss_cray | fv3 | -RUN | fv3_stochy | standard | | fv3 | -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 | +COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta | standard | hera.intel | fv3 | +COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta | standard | cheyenne.intel | fv3 | +COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta | standard | cheyenne.gnu | fv3 | -# 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 | cheyenne.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 | cheyenne.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 | -# 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 | wcoss_cray | 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_gfs_v15 | standard | | fv3 | -RUN | fv3_gfs_v15plus | standard | | fv3 | -RUN | fv3_cpt | standard | | fv3 | +RUN | fv3_ccpp_gfs_v15p2 | standard | | fv3 | +RUN | fv3_ccpp_gfs_v16beta | standard | | fv3 | ####################################################################################################################################################################################### -# CCPP REPRO tests # +# CCPP DEBUG tests # ####################################################################################################################################################################################### -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 | standard | wcoss_cray | | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 | standard | wcoss_dell_p3 | | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 | standard | hera.intel | | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 | standard | cheyenne.intel | | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 | standard | gaea.intel | | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 | standard | jet.intel | | - -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_wrtGauss_nemsio_c768 | standard | hera.intel | | -RUN | fv3_ccpp_wrtGauss_nemsio_c768 | standard | cheyenne.intel | | -RUN | fv3_ccpp_wrtGauss_nemsio_c768 | standard | wcoss_cray | | -RUN | fv3_ccpp_stochy | standard | | | -RUN | fv3_ccpp_iau | standard | | | - -# 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 | cheyenne.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 | cheyenne.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 | cheyenne.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 | | | -# 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 | wcoss_cray | | -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 | cheyenne.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 | cheyenne.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_GFS_v15,FV3_GFS_v15plus,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_GFS_v15,FV3_GFS_v15plus,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_GFS_v15,FV3_GFS_v15plus,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_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y | standard | cheyenne.intel | fv3 | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,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_GFS_v15,FV3_GFS_v15plus,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_gfs_v15 | standard | | | -RUN | fv3_ccpp_gfs_v15plus | standard | | | -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 | cheyenne.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 | - -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_wrtGauss_nemsio_c768 | standard | hera.intel | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio_c768 | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio_c768 | standard | wcoss_cray | fv3 | -RUN | fv3_ccpp_stochy | standard | | fv3 | -RUN | fv3_ccpp_iau | standard | | 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 | cheyenne.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 | cheyenne.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 | - -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 | cheyenne.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 | - -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 | -# 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 | wcoss_cray | fv3 | -RUN | fv3_ccpp_regional_c768 | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_regional_c768 | standard | hera.intel | fv3 | -RUN | fv3_ccpp_regional_c768 | standard | gaea.intel | fv3 | -RUN | fv3_ccpp_regional_c768 | standard | jet.intel | fv3 | - -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 | cheyenne.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 | - -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 | cheyenne.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 | - -RUN | fv3_ccpp_gfdlmp | standard | | fv3 | -RUN | fv3_ccpp_gfdlmprad_gwd | standard | | fv3 | -RUN | fv3_ccpp_gfdlmprad_noahmp | 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 | cheyenne.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 | - -#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 STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y | standard | wcoss_cray | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y | standard | wcoss_dell_p3 | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y | standard | hera.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y | standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y | standard | gaea.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_v15,FV3_GFS_v15plus,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y | standard | jet.intel | fv3 | +COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y | standard | hera.intel | fv3 | +COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y | standard | cheyenne.intel | fv3 | +COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y | standard | cheyenne.gnu | fv3 | -RUN | fv3_ccpp_gfdlmp_32bit | standard | | fv3 | -RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | wcoss_cray | fv3 | -RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v15 | standard | | fv3 | -RUN | fv3_ccpp_gfs_v15plus | standard | | fv3 | -RUN | fv3_ccpp_cpt | standard | | fv3 | -RUN | fv3_ccpp_gsd | standard | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_debug | standard | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_debug | standard | | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 8be1e7ddeb..c893bac65e 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -271,7 +271,7 @@ elif [[ $MACHINE_ID = cheyenne.* ]]; then export PYTHONPATH= ECFLOW_START= - QUEUE=premium + QUEUE=economy PARTITION= dprefix=/glade/scratch DISKNM=/glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT @@ -321,8 +321,8 @@ ECFLOW=false KEEP_RUNDIR=false TESTS_FILE='rt.conf' -## Switch to special regression test config on wcoss_cray: -## don't run the IPD and CCPP tests in REPRO mode. +# Switch to special regression test config on wcoss_cray: +# don't run the IPD and CCPP tests in REPRO mode. if [[ $MACHINE_ID = wcoss_cray ]]; then TESTS_FILE='rt_wcoss_cray.conf' fi @@ -374,9 +374,9 @@ while getopts ":cfsl:mkreh" opt; do done if [[ $MACHINE_ID = cheyenne.* ]]; then - RTPWD=${RTPWD:-$DISKNM/trunk-20191021/${COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/ufs-public-release-20191212/${COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/trunk-20191021} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/ufs-public-release-20191212} fi shift $((OPTIND-1)) @@ -393,25 +393,6 @@ if [[ $CREATE_BASELINE == true ]]; then rsync -a "${RTPWD}"/FV3_* "${NEW_BASELINE}"/ rsync -a "${RTPWD}"/WW3_* "${NEW_BASELINE}"/ - - # FIXME: move these namelist files to parm directory - rsync -a "${RTPWD}"/fv3_regional_control/input.nml "${NEW_BASELINE}"/fv3_regional_control/ - rsync -a "${RTPWD}"/fv3_regional_quilt/input.nml "${NEW_BASELINE}"/fv3_regional_quilt/ - rsync -a "${RTPWD}"/fv3_regional_c768/input.nml "${NEW_BASELINE}"/fv3_regional_c768/ - rsync -a "${RTPWD}"/fv3_regional_restart/input.nml "${NEW_BASELINE}"/fv3_regional_restart/ - - rsync -a "${RTPWD}"/fv3_regional_control/model_configure "${NEW_BASELINE}"/fv3_regional_control/ - rsync -a "${RTPWD}"/fv3_regional_quilt/model_configure "${NEW_BASELINE}"/fv3_regional_quilt/ - rsync -a "${RTPWD}"/fv3_regional_c768/model_configure "${NEW_BASELINE}"/fv3_regional_c768/ - rsync -a "${RTPWD}"/fv3_regional_restart/model_configure "${NEW_BASELINE}"/fv3_regional_restart/ - - rsync -a "${RTPWD}"/fv3_regional_control/INPUT "${NEW_BASELINE}"/fv3_regional_control/ - rsync -a "${RTPWD}"/fv3_regional_quilt/INPUT "${NEW_BASELINE}"/fv3_regional_quilt/ - rsync -a "${RTPWD}"/fv3_regional_c768/INPUT "${NEW_BASELINE}"/fv3_regional_c768/ - rsync -a "${RTPWD}"/fv3_regional_restart/INPUT "${NEW_BASELINE}"/fv3_regional_restart/ - rsync -a "${RTPWD}"/fv3_stretched/INPUT "${NEW_BASELINE}"/fv3_stretched/ - rsync -a "${RTPWD}"/fv3_stretched_nest/INPUT "${NEW_BASELINE}"/fv3_stretched_nest/ - rsync -a "${RTPWD}"/fv3_stretched_nest_quilt/INPUT "${NEW_BASELINE}"/fv3_stretched_nest_quilt/ fi COMPILE_LOG=${PATHRT}/Compile_$MACHINE_ID.log diff --git a/tests/rt_fv3.sh b/tests/rt_fv3.sh index c6f20b3638..95cb7d87f6 100755 --- a/tests/rt_fv3.sh +++ b/tests/rt_fv3.sh @@ -36,16 +36,8 @@ if [[ "Q${INPUT_NEST02_NML:-}" != Q ]] ; then atparse < ${PATHTR}/parm/${INPUT_NEST02_NML} > input_nest02.nml fi -# Allow fv3_run to proceed despite errors when setting up the run -# directory. With "set -e", a failure in 'source ./fv3_run; (e.g. -# if an input file to copy is not found) aborts rt_fv3.sh and the -# calling run_test.sh, and consequently rt.sh reports that the -# test ran successfully. Allowing fv3_run to proceed will in such -# cases lead to errors when the model is run (crash or different -# results), because a necessary input file would be missing. -set +e +# Set up the run directory source ./fv3_run -set -e if [[ $SCHEDULER = 'moab' ]]; then atparse < $PATHRT/fv3_conf/fv3_msub.IN > job_card diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf deleted file mode 100644 index 6c9ff7d3cd..0000000000 --- a/tests/rt_gnu.conf +++ /dev/null @@ -1,45 +0,0 @@ -####################################################################################################################################################################################### -# IPD PROD tests # -####################################################################################################################################################################################### - -COMPILE | | standard | cheyenne.gnu | fv3 | -RUN | fv3_gfdlmp | standard | cheyenne.gnu | fv3 | - -COMPILE | 32BIT=Y DEBUG=Y | standard | cheyenne.gnu | fv3 | -RUN | fv3_control_debug | standard | cheyenne.gnu | fv3 | - -COMPILE | 32BIT=Y | standard | cheyenne.gnu | fv3 | -RUN | fv3_gfs_v15plus | standard | cheyenne.gnu | fv3 | - -####################################################################################################################################################################################### -# IPD REPRO tests # -####################################################################################################################################################################################### - -COMPILE | REPRO=Y | standard | cheyenne.gnu | fv3 | -RUN | fv3_gfdlmp | standard | cheyenne.gnu | fv3 | - -COMPILE | REPRO=Y 32BIT=Y | standard | cheyenne.gnu | fv3 | -RUN | fv3_gfs_v15plus | standard | cheyenne.gnu | fv3 | - -####################################################################################################################################################################################### -# CCPP REPRO tests # -####################################################################################################################################################################################### - -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp | standard | cheyenne.gnu | | -RUN | fv3_ccpp_gfdlmp | standard | cheyenne.gnu | | - -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y | standard | cheyenne.gnu | | -RUN | fv3_ccpp_gfs_v15plus | standard | cheyenne.gnu | | - -####################################################################################################################################################################################### -# CCPP PROD tests # -####################################################################################################################################################################################### - -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp | standard | cheyenne.gnu | fv3 | -RUN | fv3_ccpp_gfdlmp | standard | cheyenne.gnu | fv3 | - -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y | standard | cheyenne.gnu | fv3 | -RUN | fv3_ccpp_control_debug | standard | cheyenne.gnu | fv3 | - -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15plus 32BIT=Y | standard | cheyenne.gnu | fv3 | -RUN | fv3_ccpp_gfs_v15plus | standard | cheyenne.gnu | fv3 | diff --git a/tests/rt_wcoss_cray.conf b/tests/rt_wcoss_cray.conf deleted file mode 100644 index c8076cd466..0000000000 --- a/tests/rt_wcoss_cray.conf +++ /dev/null @@ -1,68 +0,0 @@ -####################################################################################################################################################################################### -# IPD PROD tests # -####################################################################################################################################################################################### - -COMPILE | | standard | wcoss_cray | fv3 | -COMPILE | | standard | wcoss_dell_p3 | fv3 | -COMPILE | | standard | cheyenne.intel | fv3 | -COMPILE | | standard | gaea.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 | standard | | fv3 | -RUN | fv3_gfdlmprad_gwd | standard | | fv3 | -RUN | fv3_gfdlmprad_noahmp | standard | | fv3 | -RUN | fv3_thompson | 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_wrtGauss_nemsio_c768 | standard | cheyenne.intel | fv3 | -RUN | fv3_wrtGauss_nemsio_c768 | standard | wcoss_cray | 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 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 | cheyenne.intel | | -APPBUILD| standaloneFV3 | standard | gaea.intel | | -RUN | fv3_appbuild | standard | | | - -COMPILE | 32BIT=Y | standard | wcoss_cray | fv3 | -COMPILE | 32BIT=Y | standard | wcoss_dell_p3 | fv3 | -COMPILE | 32BIT=Y | standard | cheyenne.intel | fv3 | -COMPILE | 32BIT=Y | standard | gaea.intel | fv3 | -RUN | fv3_control_32bit | standard | | fv3 | -RUN | fv3_gfdlmprad_32bit_post | standard | | 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 | cheyenne.intel | fv3 | - -RUN | fv3_regional_control | standard | | fv3 | -RUN | fv3_regional_restart | standard | | fv3 | fv3_regional_control -RUN | fv3_regional_quilt | standard | | 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; this -# is true only for the REPRO mode; in PROD mode, it runs without problems, therefore -# the test 'fv3_regional_c768' rt_ccpp_ref_for_acceptance.conf can be run w/o problem -RUN | fv3_regional_c768 | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_regional_c768 | standard | gaea.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 | diff --git a/tests/run_test.sh b/tests/run_test.sh index 67e5e041c4..4eed84f7c8 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -36,8 +36,7 @@ export REGRESSIONTEST_LOG=${LOG_DIR}/rt_${TEST_NR}_${TEST_NAME}${RT_SUFFIX}.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 -./${RUN_SCRIPT} > ${RUNDIR_ROOT}/${TEST_NAME}${RT_SUFFIX}.log 2>&1 & -wait +./${RUN_SCRIPT} > ${RUNDIR_ROOT}/${TEST_NAME}${RT_SUFFIX}.log 2>&1 elapsed=$SECONDS echo "Elapsed time $elapsed seconds. Test ${TEST_NAME}" diff --git a/tests/tests/fv3_ccpp_gfs_v15p2 b/tests/tests/fv3_ccpp_gfs_v15p2 new file mode 100644 index 0000000000..78ca1fa8bd --- /dev/null +++ b/tests/tests/fv3_ccpp_gfs_v15p2 @@ -0,0 +1,85 @@ +############################################################################### +# +# FV3 CCPP GFS v15.2 compiled with 32-bit dynamics test +# +############################################################################### + +export TEST_DESCR="Compare FV3 32bit CCPP GFS v15.2 results with previous trunk version" + +export CNTL_DIR=fv3_gfs_v15p2 + +export LIST_FILES="atmos_4xdaily.tile1.nc \ + atmos_4xdaily.tile2.nc \ + atmos_4xdaily.tile3.nc \ + atmos_4xdaily.tile4.nc \ + atmos_4xdaily.tile5.nc \ + atmos_4xdaily.tile6.nc \ + phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc" + + +export_fv3 +export NODES=$(expr $TASKS / $TPN + 1) + +DT_ATMOS="1200" + +export FV3_RUN=ccpp_gfs_v15_run.IN +export CCPP_SUITE=FV3_GFS_v15p2 +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_v15p2_c96.nml.IN + +RUN_SCRIPT=rt_fv3.sh diff --git a/tests/tests/fv3_ccpp_gfs_v15p2_debug b/tests/tests/fv3_ccpp_gfs_v15p2_debug new file mode 100644 index 0000000000..e1a0fac782 --- /dev/null +++ b/tests/tests/fv3_ccpp_gfs_v15p2_debug @@ -0,0 +1,24 @@ +############################################################################### +# +# FV3 CCPP GFS v15.2 compiled with 32-bit dynamics test in DEBUG mode +# +############################################################################### + +export TEST_DESCR="Run FV3 32bit CCPP GFS v15.2 in DEBUG mode" + +export CNTL_DIR=fv3_gfs_v15p2 + +export LIST_FILES="" + +export_fv3 +export NODES=$(expr $TASKS / $TPN + 1) + +export FHMAX="06" +DT_ATMOS="1200" + +export FV3_RUN=ccpp_gfs_v15_run.IN +export CCPP_SUITE=FV3_GFS_v15p2 +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_v15p2_c96.nml.IN + +RUN_SCRIPT=rt_fv3.sh diff --git a/tests/tests/fv3_ccpp_gfs_v16beta b/tests/tests/fv3_ccpp_gfs_v16beta new file mode 100644 index 0000000000..23b3c98806 --- /dev/null +++ b/tests/tests/fv3_ccpp_gfs_v16beta @@ -0,0 +1,85 @@ +############################################################################### +# +# FV3 CCPP GFS v16beta compiled with 32-bit dynamics test +# +############################################################################### + +export TEST_DESCR="Compare FV3 32bit CCPP GFS v16beta results with previous trunk version" + +export CNTL_DIR=fv3_gfs_v16beta + +export LIST_FILES="atmos_4xdaily.tile1.nc \ + atmos_4xdaily.tile2.nc \ + atmos_4xdaily.tile3.nc \ + atmos_4xdaily.tile4.nc \ + atmos_4xdaily.tile5.nc \ + atmos_4xdaily.tile6.nc \ + phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc" + + +export_fv3 +export NODES=$(expr $TASKS / $TPN + 1) + +DT_ATMOS="1200" + +export FV3_RUN=ccpp_gfs_v15_run.IN +export CCPP_SUITE=FV3_GFS_v16beta +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_v16beta_c96.nml.IN + +RUN_SCRIPT=rt_fv3.sh diff --git a/tests/tests/fv3_ccpp_gfs_v16beta_debug b/tests/tests/fv3_ccpp_gfs_v16beta_debug new file mode 100644 index 0000000000..546aa31808 --- /dev/null +++ b/tests/tests/fv3_ccpp_gfs_v16beta_debug @@ -0,0 +1,24 @@ +############################################################################### +# +# FV3 CCPP GFS v16beta compiled with 32-bit dynamics test in DEBUG mode +# +############################################################################### + +export TEST_DESCR="Run FV3 32bit CCPP GFS v16beta in DEBUG mode" + +export CNTL_DIR=fv3_gfs_v16beta + +export LIST_FILES="" + +export_fv3 +export NODES=$(expr $TASKS / $TPN + 1) + +export FHMAX="06" +DT_ATMOS="1200" + +export FV3_RUN=ccpp_gfs_v15_run.IN +export CCPP_SUITE=FV3_GFS_v16beta +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_v16beta_c96.nml.IN + +RUN_SCRIPT=rt_fv3.sh diff --git a/tests/tests/fv3_ccpp_shinhong b/tests/tests/fv3_ccpp_shinhong index 4b5c6c58fe..69111a642c 100644 --- a/tests/tests/fv3_ccpp_shinhong +++ b/tests/tests/fv3_ccpp_shinhong @@ -80,7 +80,7 @@ DT_ATMOS="1200" export FV3_RUN=ccpp_gfdlmp_run.IN export CCPP_SUITE=FV3_GFS_2017_shinhong export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_gfdlmp.IN +export INPUT_NML=ccpp_gfdlmp.nml.IN RUN_SCRIPT=rt_fv3.sh diff --git a/tests/tests/fv3_ccpp_ysu b/tests/tests/fv3_ccpp_ysu index 2769ed573a..4255d61a8e 100644 --- a/tests/tests/fv3_ccpp_ysu +++ b/tests/tests/fv3_ccpp_ysu @@ -80,7 +80,7 @@ DT_ATMOS="600" export FV3_RUN=ccpp_gfdlmp_run.IN export CCPP_SUITE=FV3_GFS_2017_ysu export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_gfdlmp.IN +export INPUT_NML=ccpp_gfdlmp.nml.IN RUN_SCRIPT=rt_fv3.sh